You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace NPin.Framework.Upms.Domain.Shared.Model;
|
|
|
|
|
|
|
|
|
|
public class TencentConfigModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 访问密钥Key
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SecretId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 访问密钥
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SecretKey { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 默认区域
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Region { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 默认短信访问 端点
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SmsEndpoint { get; set; } = "sms.tencentcloudapi.com";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 短信SdkAppId
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SmsSdkAppId { get; set; }
|
|
|
|
|
}
|