diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-01 22:32:40 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-08-01 22:32:40 +0800 |
commit | 308c1faa5130913428b7348f78fe0fe2c406a63d (patch) | |
tree | abbdb97d24c2e6d7c32433887643676637011720 /Timeline/Entities/Http | |
parent | fa468c3f6d9b9ba145b7bdb9f583b0fcc1f35713 (diff) | |
download | timeline-308c1faa5130913428b7348f78fe0fe2c406a63d.tar.gz timeline-308c1faa5130913428b7348f78fe0fe2c406a63d.tar.bz2 timeline-308c1faa5130913428b7348f78fe0fe2c406a63d.zip |
Add token expire time.
Diffstat (limited to 'Timeline/Entities/Http')
-rw-r--r-- | Timeline/Entities/Http/Token.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Timeline/Entities/Http/Token.cs b/Timeline/Entities/Http/Token.cs index aeb9fbf2..8a02ed2e 100644 --- a/Timeline/Entities/Http/Token.cs +++ b/Timeline/Entities/Http/Token.cs @@ -4,6 +4,8 @@ { public string Username { get; set; } public string Password { get; set; } + // in day + public double? ExpireOffset { get; set; } } public class CreateTokenResponse |