AuditLogAttribute.cs 316 B

12345678910111213
  1. namespace VberZero.Auditing;
  2. public class AuditLogAttribute : Attribute
  3. {
  4. public string Name { get; set; }
  5. public string MethodNameSuffix { get; set; }
  6. public AuditLogAttribute(string name, string methodNameSuffix = "")
  7. {
  8. Name = name;
  9. MethodNameSuffix = methodNameSuffix;
  10. }
  11. }