AuditLogAttribute.cs 377 B

12345678910111213141516
  1. using System;
  2. namespace IwbZero.Auditing
  3. {
  4. public class AuditLogAttribute : Attribute
  5. {
  6. public string Name { get; set; }
  7. public string MethondNameSuffix { get; set; }
  8. public AuditLogAttribute(string name, string methondNameSuffix = "")
  9. {
  10. Name = name;
  11. MethondNameSuffix = methondNameSuffix;
  12. }
  13. }
  14. }