using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChouBox.Code.TencentCloudExtend.Model; /// /// 腾讯云配置 /// public class TencentBaseConfig { /// /// 腾讯云id /// public string SecretId { get; set; } /// /// 密钥 /// public string SecretKey { get; set; } }