You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
484 B
22 lines
484 B
namespace Znyc.Cloudcar.Admin.Commons.Cos
|
|
{
|
|
/// <summary>
|
|
/// Cos储存桶配置
|
|
/// </summary>
|
|
public class CosOptions
|
|
{
|
|
public string SecretId { get; set; }
|
|
|
|
public string SecretKey { get; set; }
|
|
|
|
public string Bucket { get; set; }
|
|
|
|
public string Region { get; set; }
|
|
|
|
public string AllowPrefix { get; set; }
|
|
|
|
public int DurationSeconds { get; set; }
|
|
|
|
public string[] AllowActions { get; set; }
|
|
}
|
|
}
|
|
|