Add initial implementation of API, database, and user management components.
This commit is contained in:
9
MikrocopApi/Configuration/JwtOptions.cs
Normal file
9
MikrocopApi/Configuration/JwtOptions.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace MikrocopApi.Configuration;
|
||||
|
||||
public sealed class JwtOptions
|
||||
{
|
||||
public string Issuer { get; set; } = string.Empty;
|
||||
public string Audience { get; set; } = string.Empty;
|
||||
public string SigningKey { get; set; } = string.Empty;
|
||||
public int ExpirationMinutes { get; set; } = 60;
|
||||
}
|
||||
Reference in New Issue
Block a user