From c737885deb752c17f263f46d153a0c7046e44e08 Mon Sep 17 00:00:00 2001 From: yxw <17074267@qq.com> Date: Thu, 8 Jan 2026 18:25:47 +0800 Subject: [PATCH] chore --- Atomx.Common/Models/ApiConfig.cs | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Atomx.Common/Models/ApiConfig.cs diff --git a/Atomx.Common/Models/ApiConfig.cs b/Atomx.Common/Models/ApiConfig.cs new file mode 100644 index 0000000..abb92d3 --- /dev/null +++ b/Atomx.Common/Models/ApiConfig.cs @@ -0,0 +1,35 @@ +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; + } +}