token info

This commit is contained in:
2018-07-16 02:12:20 +02:00
parent 2613552325
commit d7603de686

View 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; }
}
}