Add Login Module
This commit is contained in:
9
AMREZ.EOP.Infrastructures/Options/JwtOptions.cs
Normal file
9
AMREZ.EOP.Infrastructures/Options/JwtOptions.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user