OpenAuth.Net/OpenAuth.App/SSO/UserAuthSession.cs
2016-12-27 11:25:51 +08:00

18 lines
349 B
C#

using System;
namespace OpenAuth.App.SSO
{
[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; }
}
}