選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AuthorizationSettings.cs 250B

1234567891011
  1. namespace Diligent.WebAPI.Business.Settings
  2. {
  3. public class AuthorizationSettings
  4. {
  5. public string Secret { get; set; }
  6. public int JwtExpiredTime { get; set; }
  7. public int JwtRefreshExpiredTime { get; set; }
  8. }
  9. }