namespace Ladaer.BackEnd.Infrastructures.AppSettings { public class JwtSettings { public string Secret { get; set; } public string Issuer { get; set; } public string Audience { get; set; } public double ExpiryMinutes { get; set; } } }