auto.bus_api/Server/Configurations/Jwt.cs
cuqmbr 95028ed18b feat: many thing
- Database model
- Data transfer objects
- Country management controller
2022-10-10 20:34:09 +03:00

10 lines
306 B
C#

namespace Server.Configurations;
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; }
}