Files
Swarm/DysonNetwork.Pass/Features/Auth/Models/AuthTokens.cs

10 lines
293 B
C#

namespace DysonNetwork.Pass.Features.Auth.Models;
public class AuthTokens
{
public string AccessToken { get; set; } = string.Empty;
public string RefreshToken { get; set; } = string.Empty;
public int ExpiresIn { get; set; }
public string TokenType { get; set; } = "Bearer";
}