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 ApiSecrets { get; set; } } public class APISecret { public string Key { get; set; } public string Name { get; set; } } }