AuditedAttribute.cs 362 B

1234567891011121314
  1. using System;
  2. namespace Abp.Auditing
  3. {
  4. /// <summary>
  5. /// This attribute is used to apply audit logging for a single method or
  6. /// all methods of a class or interface.
  7. /// </summary>
  8. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property)]
  9. public class AuditedAttribute : Attribute
  10. {
  11. }
  12. }