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

31 lines
624 B
C#

11 months ago
using System;
namespace DSWeb
{
/// <summary>
/// 用户信息实体
/// </summary>
public class UserInfo
{
/// <summary>
/// 连接ID
/// </summary>
public string ConnectionId { get; set; }
public string UserId { get; set; }
public string UserFace
{
get;
set;
}
/// <summary>
/// 用户名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 最后登录时间
/// </summary>
public DateTime LastLoginTime { get; set; }
}
}