12 lines
329 B
C#

namespace Marco.Pms.Model.Authentication
{
public class JwtSettings
{
public string? Key { get; set; }
public string? Issuer { get; set; }
public string? Audience { get; set; }
public int ExpiresInMinutes { get; set; }
public int RefreshTokenExpiresInDays { get; set; }
}
}