auto.bus_api/BackEnd (ASP.NET Web API)/Server/Settings/Jwt.cs

10 lines
300 B
C#

namespace Server.Settings;
public class Jwt
{
public string Key { get; set; } = null!;
public string Audience { get; set; } = null!;
public string Issuer { get; set; } = null!;
public double ValidityInMinutes { get; set; }
public double RefreshTokenValidityInDays { get; set; }
}