23 lines
447 B
C#
23 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChouBox.Code.TencentCloudExtend.Model;
|
|
|
|
/// <summary>
|
|
/// 腾讯云配置
|
|
/// </summary>
|
|
public class TencentBaseConfig
|
|
{
|
|
/// <summary>
|
|
/// 腾讯云id
|
|
/// </summary>
|
|
public string SecretId { get; set; }
|
|
/// <summary>
|
|
/// 密钥
|
|
/// </summary>
|
|
public string SecretKey { get; set; }
|
|
}
|