8 lines
264 B
C#
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;
|
|
} |