DisableAuditingAttribute.cs 348 B

1234567891011121314
  1. using System;
  2. namespace Abp.Auditing
  3. {
  4. /// <summary>
  5. /// Used to disable auditing 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 DisableAuditingAttribute : Attribute
  10. {
  11. }
  12. }