using ExportMap.cs; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ExportMap.Models { /// /// 文件描述 /// public class FileDesc { public FileDesc(string name, long length) { this.Name = name; this.Length = Tools.FormatBytes(length); } public string Name { set; get; } public string Length { set; get; } } }