BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Models/Token.cs

11 lines
342 B
C#
Raw Normal View History

2023-06-11 23:46:02 +00:00
namespace BotSharp.Abstraction.Users.Models;
public class Token
{
public string AccessToken { get; set; } = string.Empty;
public string RefreshToken { get; set; } = string.Empty;
public string TokenType { get; set; } = string.Empty;
public int ExpireTime { get; set; }
public string Scope { get; set; } = string.Empty;
}