using System; namespace WCS.Protocol.SX { /// /// 忽略变更 /// [AttributeUsage(AttributeTargets.Property)] public class IgnoreChangingAttribute : Attribute { /// /// 忽略变更 /// public IgnoreChangingAttribute() { } /// /// 忽略变更的值范围 /// public long IgnoreValueRange { get; set; } } }