/* ==============================================================================
* 功能描述:FileContent
* 创 建 者:Garrett
* 创建日期:2019/9/16 19:25:15
* ==============================================================================*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PackageUploader.Http
{
///
/// FileContent
///
class FileContent
{
public int BufferLength { get; set; } = 1024 * 1024;
///
/// 超时设置
///
public int Timeout { get; set; } = 600000;
public EventHandler TransferProgress { get; set; }
}
}