HuanMengProject/src/0-core/HuanMeng.MiaoYu.Code/TencentUtile/TencentBaseConfig.cs
2024-07-09 04:21:51 +08:00

24 lines
498 B
C#

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