chore
This commit is contained in:
35
Atomx.Common/Models/ApiConfig.cs
Normal file
35
Atomx.Common/Models/ApiConfig.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
namespace Atomx.Common.Models
|
||||
{
|
||||
public class ApiConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// 主机地址
|
||||
/// </summary>
|
||||
public string Host { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 端口
|
||||
/// </summary>
|
||||
public int Port { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务请求的URL地址
|
||||
/// </summary>
|
||||
public string Url { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 应用ID
|
||||
/// </summary>
|
||||
public string AppId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
public string AccessKeyID { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 秘钥
|
||||
/// </summary>
|
||||
public string AccessKeySecret { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user