INotificationConfiguration.cs 528 B

1234567891011121314151617181920
  1. using Abp.Collections;
  2. namespace Abp.Notifications
  3. {
  4. /// <summary>
  5. /// Used to configure notification system.
  6. /// </summary>
  7. public interface INotificationConfiguration
  8. {
  9. /// <summary>
  10. /// Notification providers.
  11. /// </summary>
  12. ITypeList<NotificationProvider> Providers { get; }
  13. /// <summary>
  14. /// A list of contributors for notification distribution process.
  15. /// </summary>
  16. ITypeList<INotificationDistributer> Distributers { get; }
  17. }
  18. }