Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AuthorizationSettings.cs 370B

123456789101112
  1. using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
  2. namespace Diligent.WebAPI.Business.Settings
  3. {
  4. public class AuthorizationSettings
  5. {
  6. public string Secret { get; set; }
  7. public int JwtExpiredTime { get; set; }
  8. public int JwtRefreshExpiredTime { get; set; }
  9. public string GoogleClientId { get; set; }
  10. }
  11. }