You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
360 B
14 lines
360 B
1 year ago
|
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 文件分块上传的信息记录类
|
||
|
/// </summary>
|
||
|
public class MultipartUploadInfos
|
||
|
{
|
||
|
public NewMultipartUploadResult newMultipartUploadResult = new NewMultipartUploadResult();
|
||
|
public string md5;
|
||
|
public long uploadProcessedBytes;
|
||
|
public List<PartInfo> partInfos = new List<PartInfo>();
|
||
|
}
|