13 lines
382 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|