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