using System; using PostSharp.Extensibility; namespace DelftTools.Utils.Aop { /// /// Apply this attribute to properties you do not want to be intercepted /// by NotifyPropertyChangeAttribute. /// [Serializable] [MulticastAttributeUsage(MulticastTargets.Property | MulticastTargets.Field)] public class NoNotifyPropertyChangeAttribute : Attribute {} }