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