public class JwtOptions { public const string Section = "Jwt"; public string Secret { get; set; } = null!; public string Issuer { get; set; } = null!; public string Audience { get; set; } = null!; public int ExpiryMinutes { get; set; } = 480; }