token info
This commit is contained in:
parent
be912502bd
commit
e4ccaba8f4
1 changed files with 12 additions and 0 deletions
12
Yavsc.Abstract/Identity/TokenInfo.cs
Normal file
12
Yavsc.Abstract/Identity/TokenInfo.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace Yavsc.Abstract.Identity
|
||||
{
|
||||
using System;
|
||||
public class TokenInfo
|
||||
{
|
||||
public string AccessToken { get; set; }
|
||||
public string RefreshToken { get; set; }
|
||||
public int ExpiresIn { set; get; }
|
||||
public DateTime Received { get; set; }
|
||||
public string TokenType { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue