diff options
author | crupest <crupest@outlook.com> | 2022-03-23 21:30:14 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-03-23 21:30:31 +0800 |
commit | da9139b7bab95f6e5ba5f4bb2d99011c2d6db03a (patch) | |
tree | 051fd4ca4bc511db7e04b019a33fddaab2d0cc6b /BackEnd/Timeline/Services/Token/UserTokenInfo.cs | |
parent | 3d6c9fd916e18c99b3a5497b8313672680571b5e (diff) | |
download | timeline-da9139b7bab95f6e5ba5f4bb2d99011c2d6db03a.tar.gz timeline-da9139b7bab95f6e5ba5f4bb2d99011c2d6db03a.tar.bz2 timeline-da9139b7bab95f6e5ba5f4bb2d99011c2d6db03a.zip |
…
Diffstat (limited to 'BackEnd/Timeline/Services/Token/UserTokenInfo.cs')
-rw-r--r-- | BackEnd/Timeline/Services/Token/UserTokenInfo.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BackEnd/Timeline/Services/Token/UserTokenInfo.cs b/BackEnd/Timeline/Services/Token/UserTokenInfo.cs index 547f5ba6..b1a386d1 100644 --- a/BackEnd/Timeline/Services/Token/UserTokenInfo.cs +++ b/BackEnd/Timeline/Services/Token/UserTokenInfo.cs @@ -4,8 +4,8 @@ namespace Timeline.Services.Token {
public class UserTokenInfo
{
- public long Id { get; set; }
- public long Version { get; set; }
- public DateTime ExpireAt { get; set; }
+ public long UserId { get; set; }
+ public DateTime? ExpireAt { get; set; }
+ public DateTime? CreateAt { get; set; }
}
}
|