INotificationDefinitionContext.cs 346 B

12345678910111213
  1. namespace Abp.Notifications
  2. {
  3. /// <summary>
  4. /// Used as a context while defining notifications.
  5. /// </summary>
  6. public interface INotificationDefinitionContext
  7. {
  8. /// <summary>
  9. /// Gets the notification definition manager.
  10. /// </summary>
  11. INotificationDefinitionManager Manager { get; }
  12. }
  13. }