IgnorePropertyChangeAttribute.cs 370 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.Utilities
  6. {
  7. [AttributeUsageAttribute(AttributeTargets.Property | AttributeTargets.Field)]
  8. public class IgnorePropertyChangeAttribute : Attribute
  9. {
  10. public IgnorePropertyChangeAttribute( )
  11. {
  12. }
  13. }
  14. }