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.
 
 
 
 
 

26 lines
537 B

using System;
namespace Sanhe.Abp.Notifications;
/// <summary>
/// 通知订阅信息
/// </summary>
public class NotificationSubscriptionInfo
{
/// <summary>
/// 租户Id
/// </summary>
public Guid? TenantId { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public Guid UserId { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 通知名
/// </summary>
public string NotificationName { get; set; }
}