Files
vigilcare-records/VigilCareRecordsAPI/Configurations/JwtOptions.cs
T
2026-06-26 04:20:20 +08:00

8 lines
264 B
C#

public class JwtOptions
{
public const string Section = "Jwt";
public string Secret { get; set; } = null!;
public string Issuer { get; set; } = null!;
public string Audience { get; set; } = null!;
public int ExpiryMinutes { get; set; } = 480;
}