using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Abp.Application.Contracts.Options
{
public class FilesOption
{
///
/// 保存路径
///
public string SavePath { get; set; }
///
/// 时间格式
///
public string TimeFormat { get; set; }
///
/// 可上传格式
///
public List Ext { get; set; }
///
/// 上传大小字节
///
public int FileSizeLimit { get; set; }
///
/// 静态文件夹
///
public string FileProvider { get; set; }
///
/// 代理路由
///
public string RequestPath { get; set; }
///
/// 服务器地址
///
public string ApplicationUrl { get; set; }
}
}