123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Model.Tag;
- using COSXML.Transfer;
- namespace COSXML.Model.Object
- {
- /// <summary>
- /// 分片复制返回的结果
- /// <see href="https://cloud.tencent.com/document/product/436/12633"/>
- /// </summary>
- public sealed class UploadPartCopyResult : CosDataResult<CopyPartResult>
- {
- /// <summary>
- /// 分片复制的结果信息
- /// <see href="Model.Tag.CopyObject"/>
- /// </summary>
- public CopyPartResult copyPart {
- get {return _data; }
- }
- }
- }
|