您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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