You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
632 B
C#
30 lines
632 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 UserId { 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; }
|
|
}
|
|
} |