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 ExpireMinutes { get; set; } = 480; }