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.
18 lines
334 B
18 lines
334 B
3 years ago
|
namespace Sanhe.Abp.Notifications;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 通知存活时间
|
||
|
/// 发送之后取消用户订阅,类似于微信小程序
|
||
|
/// </summary>
|
||
|
public enum NotificationLifetime
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 持久化
|
||
|
/// </summary>
|
||
|
Persistent = 0,
|
||
|
/// <summary>
|
||
|
/// 一次性
|
||
|
/// </summary>
|
||
|
OnlyOne = 1
|
||
|
}
|