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.
24 lines
548 B
C#
24 lines
548 B
C#
namespace NPin.Framework.Upms.Domain.Shared.Model;
|
|
|
|
public class AliyunConfigModel
|
|
{
|
|
/// <summary>
|
|
/// 访问密钥Key
|
|
/// </summary>
|
|
public string AccessKeyId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 访问密钥
|
|
/// </summary>
|
|
public string AccessKeySecret { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认 区域ID
|
|
/// </summary>
|
|
public string RegionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认 短信访问 端点
|
|
/// </summary>
|
|
public string SmsEndpoint { get; set; } = "dysmsapi.aliyuncs.com";
|
|
} |