auto.bus_api/Server/Settings/Jwt.cs
2022-09-14 11:09:49 +03:00

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; }
}