NotificationProvider.cs 494 B

12345678910111213141516
  1. using Abp.Dependency;
  2. namespace Abp.Notifications
  3. {
  4. /// <summary>
  5. /// This class should be implemented in order to define notifications.
  6. /// </summary>
  7. public abstract class NotificationProvider : ITransientDependency
  8. {
  9. /// <summary>
  10. /// Used to add/manipulate notification definitions.
  11. /// </summary>
  12. /// <param name="context">Context</param>
  13. public abstract void SetNotifications(INotificationDefinitionContext context);
  14. }
  15. }