41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 保存路径
|
|
/// </summary>
|
|
public string SavePath { get; set; }
|
|
/// <summary>
|
|
/// 时间格式
|
|
/// </summary>
|
|
public string TimeFormat { get; set; }
|
|
/// <summary>
|
|
/// 可上传格式
|
|
/// </summary>
|
|
public List<string> Ext { get; set; }
|
|
/// <summary>
|
|
/// 上传大小字节
|
|
/// </summary>
|
|
public int FileSizeLimit { get; set; }
|
|
/// <summary>
|
|
/// 静态文件夹
|
|
/// </summary>
|
|
public string FileProvider { get; set; }
|
|
/// <summary>
|
|
/// 代理路由
|
|
/// </summary>
|
|
public string RequestPath { get; set; }
|
|
/// <summary>
|
|
/// 服务器地址
|
|
/// </summary>
|
|
public string ApplicationUrl { get; set; }
|
|
}
|
|
}
|