OpenAuth.Net/OpenAuth.App/SSO/UserAuthSession.cs

18 lines
349 B
C#
Raw Normal View History

2016-07-08 18:51:48 +08:00
using System;
namespace OpenAuth.App.SSO
2016-07-08 18:51:48 +08:00
{
[Serializable]
public class UserAuthSession
{
public string Token { get; set; }
public string AppKey { get; set; }
public string UserName { get; set; }
public string IpAddress { get; set; }
public DateTime CreateTime { get; set; }
}
}