mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
20 lines
400 B
C#
20 lines
400 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 InvalidTime { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
} |