namespace SA.Domain.XFYun.XFYunEntity { public class XFYunApiConfig { public static XFYunApiConfig? GetApiConfig(string key) { var configs = InitConfiguration.GetSection("XFYunApiConfigs").Get>(); return configs.FirstOrDefault(x => x.Key == key); } /// /// key /// public string? Key { get; set; } /// /// 请求地址 /// public string? Url { get; set; } /// /// 描述 /// public string? Description { get; set; } public string? ServiceType { get; set; } public string? ParamType { get; set; } public string? ParamPosition { get; set; } } }