BotSharp/src/Plugins/BotSharp.Plugin.TencentCos/Settings/TencentCosSettings.cs
2024-07-31 01:08:40 +08:00

13 lines
382 B
C#

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;
}
}