- using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
-
- namespace Diligent.WebAPI.Business.Settings
- {
- public class AuthorizationSettings
- {
- public string Secret { get; set; }
- public int JwtExpiredTime { get; set; }
- public int JwtRefreshExpiredTime { get; set; }
- public string GoogleClientId { get; set; }
- }
- }
|