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.

17 lines
366 B
C#

namespace VM
{
/// <summary>
/// 保存在Session中的简易用户信息
/// </summary>
public class SessionUser
{
/// <summary>
/// 用户ID
/// </summary>
public int UserID { get; set; }
/// <summary>
/// 唯一识别码
/// </summary>
public string GUID { get; set; }
}
}