11 lines
439 B
C#
11 lines
439 B
C#
namespace VersionedSerialization.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
|
|
public class VersionConditionAttribute : Attribute
|
|
{
|
|
public string LessThan { get; set; } = "";
|
|
public string GreaterThan { get; set; } = "";
|
|
public string EqualTo { get; set; } = "";
|
|
public string IncludingTag { get; set; } = "";
|
|
public string ExcludingTag { get; set; } = "";
|
|
} |