IdsConfig.cs 486 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace QM.Gateway
  6. {
  7. public class IdentityServerConfig
  8. {
  9. public string Url { get; set; }
  10. public bool UseHttps { get; set; }
  11. public string IdentityScheme { get; set; }
  12. public List<APISecret> ApiSecrets { get; set; }
  13. }
  14. public class APISecret
  15. {
  16. public string Key { get; set; }
  17. public string Name { get; set; }
  18. }
  19. }