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 IgnoredTypes { get; } public EntityHistoryConfiguration() { IsEnabled = true; Selectors = new EntityHistorySelectorList(); IgnoredTypes = new List() { typeof(EntityChangeSet), typeof(EntityChange), typeof(EntityPropertyChange) }; } } }