namespace Common.Util
{
///
/// 文件上传配置选项
///
public sealed class UploadOptions
{
///
/// 路径
///
public string Path { get; set; }
///
/// 大小
///
public long MaxSize { get; set; }
///
/// 上传格式
///
public List ContentType { get; set; }
///
/// 启用文件MD5验证
///
/// 防止重复上传
public bool EnableMd5 { get; set; }
}
}