namespace SPMS.Application.Settings; public class JwtSettings { public const string SectionName = "JwtSettings"; public string SecretKey { get; set; } = string.Empty; public string Issuer { get; set; } = string.Empty; public string Audience { get; set; } = string.Empty; public int ExpiryMinutes { get; set; } = 60; public int RefreshTokenExpiryDays { get; set; } = 7; }