using System;
using System.Collections.Generic;
using System.Linq;
using Furion.ConfigurableOptions;
using System.Text;
using System.Threading.Tasks;
namespace Common.Util
{
///
/// 文件上传配置选项
///
public sealed class UploadOptions : IConfigurableOptions
{
///
/// 路径
///
public string Path { get; set; }
///
/// 大小
///
public long MaxSize { get; set; }
///
/// 上传格式
///
public List ContentType { get; set; }
///
/// 启用文件MD5验证
///
/// 防止重复上传
public bool EnableMd5 { get; set; }
}
}