Abp模块
abp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
353 B

using System.Collections.Generic;
namespace Sanhe.Abp.Notifications
{
/// <summary>
/// 通知发布提供者管理
/// </summary>
public interface INotificationPublishProviderManager
{
/// <summary>
/// 提供者列表
/// </summary>
List<INotificationPublishProvider> Providers { get; }
}
}