FirmTracker-Server/Authentication/AuthenticationSettings.cs

10 lines
244 B
C#
Raw Permalink Normal View History

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