9 lines
292 B
C#
9 lines
292 B
C#
namespace AMREZ.EOP.Infrastructures.Options;
|
|
|
|
public sealed class JwtOptions
|
|
{
|
|
public string Issuer { get; init; } = default!;
|
|
public string Audience { get; init; } = default!;
|
|
public string SigningKey { get; init; } = default!;
|
|
public int AccessMinutes { get; init; } = 10;
|
|
} |