namespace QYZH.InteractiveMagazine.Models.Settings; /// /// JWT配置 /// public class JwtSettings { /// /// 颁发者 /// public string? Issuer { get; set; } /// /// 接收者 /// public string? Audience { get; set; } /// /// 密钥 /// public string? SecretKey { get; set; } /// /// 过期时间(分钟) /// public int ExpiryMinutes { get; set; } }