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