23 lines
484 B
23 lines
484 B
2 years ago
|
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; }
|
||
|
}
|
||
|
}
|