using System.Collections.Generic;
using System.Threading.Tasks;
namespace Sanhe.Abp.Notifications;
///
/// 通知发布提供者接口
///
public interface INotificationPublishProvider
{
///
/// 名称
///
string Name { get; }
///
/// 发布通知
///
/// 通知信息
/// 接收用户列表
///
Task PublishAsync(NotificationInfo notification, IEnumerable identifiers);
}