using System; namespace OpenAuth.App.SSO { [Serializable] public class UserAuthSession { public string Token { get; set; } public string AppKey { get; set; } /// /// 用户账号 /// public string Account { get; set; } /// /// 用户名 /// public string Name { get; set; } public string IpAddress { get; set; } public DateTime CreateTime { get; set; } } }