26 lines
535 B
C#
26 lines
535 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MiaoYu.Core.Cos.Configs
|
|
{
|
|
public class TencentBaseConfig
|
|
{
|
|
/// <summary>
|
|
/// 腾讯云id
|
|
/// </summary>
|
|
public string SecretId { get; set; }
|
|
/// <summary>
|
|
/// 密钥
|
|
/// </summary>
|
|
public string SecretKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应用Id
|
|
/// </summary>
|
|
public string AppId { get; set; }
|
|
}
|
|
}
|