using Furion.ConfigurableOptions; using System.Collections.Generic; namespace Admin.NET.Core { /// /// 文件上传配置选项 /// public sealed class UploadOptions : IConfigurableOptions { /// /// 路径 /// public string Path { get; set; } /// /// 大小 /// public long MaxSize { get; set; } /// /// 上传格式 /// public List ContentType { get; set; } } }