using System; namespace Abp.Auditing { /// /// Used to disable auditing for a single method or /// all methods of a class or interface. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property)] public class DisableAuditingAttribute : Attribute { } }