Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ALiYun/OSSConfigResult.cs

18 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.ALiYun
{
public class OSSConfigResult
{
public string AccessKeyId { get; set; }
public string AccessKeySecret { get; set; }
public string Endpoint { get; set; }
public string BucketName { get; set; }
public long Size { get; set; }
}
}