BotSharp/src/Plugins/BotSharp.Plugin.TencentCos/Settings/TencentCosSettings.cs

13 lines
382 B
C#
Raw Normal View History

namespace BotSharp.Plugin.TencentCos.Settings
{
public class TencentCosSettings
{
public string AppId { get; set; }
public string SecretId { get; set; }
public string SecretKey { get; set; }
public string Region { get; set; }
public string BucketName { get; set; }
public int KeyDurationSecond { get; set; } = 600;
}
}