auto.bus_api/Server/Settings/Jwt.cs

9 lines
241 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; }
}