You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AuthorizationSettings.cs 400B

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