namespace Atomx.Common.Models
{
public class ApiProviderConfig
{
///
/// 主机地址
///
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 AccessID { get; set; } = string.Empty;
///
/// 秘钥/密码
///
public string AccessSecret { get; set; } = string.Empty;
}
}