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.
23 lines
487 B
23 lines
487 B
2 years ago
|
namespace Znyc.Recruitment.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; }
|
||
|
}
|
||
|
}
|