namespace QYZH.InteractiveMagazine.Infrastructure.OSS
{
///
/// OSS配置
///
public class OSSOptions
{
public const string Section = "AliyunOSSConfigs";
///
/// ID
///
public string AccessKeyID { get; set; }
///
/// 密钥
///
public string AccessKeySecret { get; set; }
///
/// 地区
///
public string Region { get; set; }
///
/// 存储桶
///
public string BucketName { get; set; }
///
/// 视频点播储存桶
///
public string VodBucketName { get; set; }
///
/// 存储桶
///
public string RoleArn { get; set; }
///
/// 过期时间
///
public int DurationSeconds { get; set; }
///
/// 终结点
///
public string Endpoint { get; set; }
///
/// IMM转换项目名称
///
public string ProjectName { get; set; }
///
/// 访问域名
///
public string Domain { get; set; }
}
}