using Newtonsoft.Json;
namespace NPin.Framework.Upms.Domain.Shared.Model;
public class TencentConfigModel
{
///
/// 访问密钥Key
///
public string SecretId { get; set; }
///
/// 访问密钥
///
public string SecretKey { get; set; }
///
/// 默认区域
///
public string Region { get; set; }
///
/// 默认短信访问 端点
///
public string SmsEndpoint { get; set; } = "sms.tencentcloudapi.com";
///
/// 短信SdkAppId
///
public string SmsSdkAppId { get; set; }
}