FirmTracker-Server/Authentication/AuthenticationSettings.cs
2024-12-27 11:06:14 +01:00

10 lines
244 B
C#

namespace FirmTracker_Server.Authentication
{
public class AuthenticationSettings
{
public string JwtSecKey { get; set; }
public int JwtExpireDays { get; set; }
public string JwtIssuer { get; set; }
}
}