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.
24 lines
446 B
24 lines
446 B
using System; |
|
|
|
namespace Sanhe.Abp.Notifications; |
|
|
|
/// <summary> |
|
/// 用户信息 |
|
/// </summary> |
|
public class UserIdentifier |
|
{ |
|
/// <summary> |
|
/// 用户标识 |
|
/// </summary> |
|
public Guid UserId { get; set; } |
|
/// <summary> |
|
/// 用户名 |
|
/// </summary> |
|
public string UserName { get; set; } |
|
|
|
public UserIdentifier(Guid userId, string userName) |
|
{ |
|
UserId = userId; |
|
UserName = userName; |
|
} |
|
}
|
|
|