using Abp.Dependency;
namespace Abp.Notifications
{
///
/// This class should be implemented in order to define notifications.
///
public abstract class NotificationProvider : ITransientDependency
{
///
/// Used to add/manipulate notification definitions.
///
/// Context
public abstract void SetNotifications(INotificationDefinitionContext context);
}
}