using System; namespace WCS.Entity { [AttributeUsage(AttributeTargets.Property)] public class IgnoreChangingAttribute : Attribute { public IgnoreChangingAttribute() { } public long IgnoreValueRange { get; set; } } }