namespace Znyc.Recruitment.Admin.Commons.Cos { /// /// Cos储存桶配置 /// 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; } } }