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.
|
using System; |
|
|
|
/// <summary> |
|
/// 分块信息 |
|
/// </summary> |
|
public class PartInfo |
|
{ |
|
public int partNumber; //分块编号 |
|
public int size; //分块大小 |
|
public DateTime lastModified; //最近修改时间 |
|
public string eTag; //实体标签 |
|
}
|
|
|