1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace QM.Gateway
- {
- public class IdentityServerConfig
- {
- public string Url { get; set; }
- public bool UseHttps { get; set; }
- public string IdentityScheme { get; set; }
- public List<APISecret> ApiSecrets { get; set; }
- }
- public class APISecret
- {
- public string Key { get; set; }
- public string Name { get; set; }
- }
- }
|