NotificationConfiguration.cs 505 B

1234567891011121314151617
  1. using Abp.Collections;
  2. namespace Abp.Notifications
  3. {
  4. internal class NotificationConfiguration : INotificationConfiguration
  5. {
  6. public ITypeList<NotificationProvider> Providers { get; private set; }
  7. public ITypeList<INotificationDistributer> Distributers { get; private set; }
  8. public NotificationConfiguration()
  9. {
  10. Providers = new TypeList<NotificationProvider>();
  11. Distributers = new TypeList<INotificationDistributer>();
  12. }
  13. }
  14. }