Files
Academic-Affairs-System/src/Jiaowu.Api/Infrastructure/Auth/JwtOptions.cs
T
2026-07-24 12:42:51 +08:00

11 lines
337 B
C#

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;
}