15 lines
382 B
C#
15 lines
382 B
C#
namespace Dolphin.ExamPictureCut.Options;
|
|
|
|
public class AliyunOption
|
|
{
|
|
public string AccessKeyId { get; set; }
|
|
public string AccessKeySecret { get; set; }
|
|
public string Endpoint { get; set; }
|
|
public string RegionId { get; set; }
|
|
/// <summary>
|
|
/// Bucket
|
|
/// </summary>
|
|
public string ContainerName { get; set; }
|
|
public string Host { get; set; }
|
|
}
|