天津投入产出系统后端
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.
 
 
 
 
 
 

43 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Applications.Session
{
public class SessionInfo
{
/// <summary>
/// 用户姓名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 用户登录时间
/// </summary>
public DateTime LogonTime { get; set; }
/// <summary>
/// 上一次更新状态时间
/// </summary>
public DateTime UpdateTime { get; set; }
/// <summary>
/// 用户的IP地址
/// </summary>
public System.Net.IPAddress IP { get; set; }
/// <summary>
/// 消息推送服务注册的端口号
/// </summary>
public int Port { get; set; }
/// <summary>
/// 授权码
/// </summary>
internal string License { get; set; }
/// <summary>
/// 客户端机器码
/// </summary>
internal string ClientSN { get; set; }
/// <summary>
/// 系统授权权限
/// </summary>
internal Common.Data.UserAuthority AdminLicense { get; set; }
}
}