- namespace VberZero.Auditing;
- public class AuditLogAttribute : Attribute
- {
- public string Name { get; set; }
- public string MethodNameSuffix { get; set; }
- public AuditLogAttribute(string name, string methodNameSuffix = "")
- {
- Name = name;
- MethodNameSuffix = methodNameSuffix;
- }
- }
|