namespace Jiaowu.Api.Infrastructure.Auth; public sealed class JwtOptions { public const string SectionName = "Jwt"; public string Issuer { get; set; } = "Jiaowu.Api"; public string Audience { get; set; } = "Jiaowu.Web"; public string Key { get; set; } = string.Empty; public int AccessTokenMinutes { get; set; } = 10; public int WebIdleMinutes { get; set; } = 30; public int AppIdleMinutes { get; set; } = 3 * 24 * 60; }