using System; namespace Abp.Auditing { /// /// This attribute is used to apply audit logging for a single method or /// all methods of a class or interface. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property)] public class AuditedAttribute : Attribute { } }