namespace NPin.Framework.Upms.Domain.Shared.Model; public class AliyunConfigModel { /// /// 访问密钥Key /// public string AccessKeyId { get; set; } /// /// 访问密钥 /// public string AccessKeySecret { get; set; } /// /// 默认 区域ID /// public string RegionId { get; set; } /// /// 默认 短信访问 端点 /// public string SmsEndpoint { get; set; } = "dysmsapi.aliyuncs.com"; }