Files
2025-10-01 23:59:31 +03:00

11 lines
351 B
C#

namespace LctMonolith.Application.Options;
public class JwtOptions
{
public string Key { get; set; } = string.Empty;
public string Issuer { get; set; } = string.Empty;
public string Audience { get; set; } = string.Empty;
public int AccessTokenMinutes { get; set; } = 60;
public int RefreshTokenDays { get; set; } = 7;
}