FirmTracker-Server/Authentication/AuthenticationSettings.cs

10 lines
242 B
C#
Raw Normal View History

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