using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MiaoYu.Core.Cos.Configs
{
public class TencentBaseConfig
{
///
/// 腾讯云id
///
public string SecretId { get; set; }
///
/// 密钥
///
public string SecretKey { get; set; }
///
/// 应用Id
///
public string AppId { get; set; }
}
}