Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }