IgnoreChangingAttribute.cs 253 B

123456789101112
  1. using System;
  2. namespace WCS.Entity
  3. {
  4. [AttributeUsage(AttributeTargets.Property)]
  5. public class IgnoreChangingAttribute : Attribute
  6. {
  7. public IgnoreChangingAttribute() { }
  8. public long IgnoreValueRange { get; set; }
  9. }
  10. }