namespace Manager.Interfaces.Models
{
public class TokensSettings
{
///
/// Application secret for tokens generation
///
public string Secret { get; set; }
///
/// Access token expiration in minutes
///
public int AccessTokenExpiration { get; set; } = 30;
///
/// Refresh token expiration in minutes
///
public int RefreshTokenExpiration { get; set; } = 4 * 60;
}
}