using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class uploaderOption { public string Title { get; set; } public string Name { get; set; } public bool? IsEnabled { get; set; } public object MainTableID { get; set; } public FileType FileType { get; set; } public int? MaxFileSize { get; set; } public string UploadUrl { get; set; } } public enum FileType { /// /// 所有文件 /// ALL = 100, /// /// 文档 /// Document = 1, /// /// 图片 /// Picture = 2, /// /// 视频 /// Video = 3, /// /// 图片和视频 /// PicAndVid = 4, /// /// 音频 /// Sound = 5 } }