using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace FileServerApi.Common { public class FileClass { /// /// 文件类 /// public class FileInfo { public string filename { set; get; } public string fileurl { set; get; } public string filesmallurl { set; get; } public string filesize { set; get; } public string fileext { set; get; } public string filemd5 { set; get; } } /// /// Base64类 /// public class Base64Info { public string filename { set; get; } public string fileurl { set; get; } } } }