11 lines
351 B
C#
11 lines
351 B
C#
namespace LctMonolith.Application.Options;
|
|
|
|
public class JwtOptions
|
|
{
|
|
public string Key { get; set; } = string.Empty;
|
|
public string Issuer { get; set; } = string.Empty;
|
|
public string Audience { get; set; } = string.Empty;
|
|
public int AccessTokenMinutes { get; set; } = 60;
|
|
public int RefreshTokenDays { get; set; } = 7;
|
|
}
|