using JetBrains.Annotations;
using System.Collections.Generic;
namespace Sanhe.Abp.Notifications;
///
/// 通知定义管理者接口
///
public interface INotificationDefinitionManager
{
///
/// 获取通知定义
///
///
///
[NotNull]
NotificationDefinition Get([NotNull] string name);
///
/// 获取所有通知定义
///
///
IReadOnlyList GetAll();
///
/// 获取通知定义,如果为空返回Null
///
///
///
NotificationDefinition GetOrNull(string name);
///
/// 获取通知定义分组列表
///
///
IReadOnlyList GetGroups();
}