mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
26 lines
552 B
C#
26 lines
552 B
C#
using System;
|
|
|
|
namespace OpenAuth.App.SSO
|
|
{
|
|
[Serializable]
|
|
public class UserAuthSession
|
|
{
|
|
public string Token { get; set; }
|
|
|
|
public string AppKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户账号
|
|
/// </summary>
|
|
public string Account { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
public string IpAddress { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
} |