2024-10-23 23:16:01 +02:00
|
|
|
|
namespace FirmTracker_Server.Authentication
|
|
|
|
|
{
|
|
|
|
|
public class AuthenticationSettings
|
|
|
|
|
{
|
2024-12-27 11:06:14 +01:00
|
|
|
|
public string JwtSecKey { get; set; }
|
2024-10-23 23:16:01 +02:00
|
|
|
|
public int JwtExpireDays { get; set; }
|
2024-12-27 11:06:14 +01:00
|
|
|
|
public string JwtIssuer { get; set; }
|
2024-10-23 23:16:01 +02:00
|
|
|
|
}
|
|
|
|
|
}
|