| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace Abp.Auditing
- {
- internal class AuditingConfiguration : IAuditingConfiguration
- {
- public bool IsEnabled { get; set; }
- public bool RunInBackground { get; set; }
- public bool IsEnabledForAnonymousUsers { get; set; }
- public IAuditingSelectorList Selectors { get; }
- public List<Type> IgnoredTypes { get; }
- public AuditingConfiguration()
- {
- IsEnabled = true;
- Selectors = new AuditingSelectorList();
- IgnoredTypes = new List<Type>();
- RunInBackground = false;
- }
- }
- }
|