namespace Atomx.Common.Models { public class ApiConfig { /// /// 主机地址 /// public string Host { get; set; } = string.Empty; /// /// 端口 /// public int Port { get; set; } /// /// 服务请求的URL地址 /// public string Url { get; set; } = string.Empty; /// /// 应用ID /// public string AppId { get; set; } = string.Empty; /// /// ID /// public string AccessKeyID { get; set; } = string.Empty; /// /// 秘钥 /// public string AccessKeySecret { get; set; } = string.Empty; } }