Files

20 lines
508 B
C#
Raw Permalink Normal View History

namespace QYZH.InteractiveMagazine.Infrastructure.OSS
{
public class OssCredentials
{
public string AccessKeyId { get; set; }
public string AccessKeySecret { get; set; }
public string SecurityToken { get; set; }
public long ExpireTime { get; set; } // 格式化为 "yyyy-MM-dd HH:mm:ss"
public string BucketName { get; set; }
public string Region { get; set; } // 格式如 "oss-cn-hangzhou"
public string Domain { get; set; }
}
}