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.
25 lines
594 B
25 lines
594 B
3 years ago
|
namespace Sanhe.Abp.Notifications;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 内置通知提供者
|
||
|
/// </summary>
|
||
|
public static class NotificationProviderNames
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// SignalR 实时通知
|
||
|
/// </summary>
|
||
|
public const string SignalR = "SignalR";
|
||
|
/// <summary>
|
||
|
/// 短信通知
|
||
|
/// </summary>
|
||
|
public const string Sms = "Sms";
|
||
|
/// <summary>
|
||
|
/// 邮件通知
|
||
|
/// </summary>
|
||
|
public const string Emailing = "Emailing";
|
||
|
/// <summary>
|
||
|
/// 微信小程序模板通知
|
||
|
/// </summary>
|
||
|
public const string WechatMiniProgram = "WeChat.MiniProgram";
|
||
|
}
|