Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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