| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- namespace Abp.EntityHistory
- {
- internal class EntityHistoryConfiguration : IEntityHistoryConfiguration
- {
- public bool IsEnabled { get; set; }
- public bool IsEnabledForAnonymousUsers { get; set; }
- public IEntityHistorySelectorList Selectors { get; }
- public List<Type> IgnoredTypes { get; }
- public EntityHistoryConfiguration()
- {
- IsEnabled = true;
- Selectors = new EntityHistorySelectorList();
- IgnoredTypes = new List<Type>()
- {
- typeof(EntityChangeSet),
- typeof(EntityChange),
- typeof(EntityPropertyChange)
- };
- }
- }
- }
|