mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 05:01:15 +03:00
9 lines
239 B
C#
9 lines
239 B
C#
namespace PracticeCalendar.Domain.Common
|
|
{
|
|
// source: https://github.com/jhewlett/ValueObject
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class IgnoreMemberAttribute : Attribute
|
|
{
|
|
}
|
|
}
|