using Abp.Collections; namespace Abp.Notifications { internal class NotificationConfiguration : INotificationConfiguration { public ITypeList Providers { get; private set; } public ITypeList Distributers { get; private set; } public NotificationConfiguration() { Providers = new TypeList(); Distributers = new TypeList(); } } }