9 lines
320 B
C#
9 lines
320 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; } = 15;
|
|
public int RefreshTokenExpiryDays { get; set; } = 7;
|
|
} |