namespace Gatedge.ScanCode.Options; /// /// JWT配置类 /// public class JwtOption { /// /// /// public string SecretKey { get; set; } /// /// /// public string Issuer { get; set; } /// /// /// public string Audience { get; set; } /// /// 失效时间(秒) /// public long FailureTime { get; set; } }