using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace djy.Paas.Model { /// /// 文件列表Dto /// public class FileListDto { /// /// Name /// public string Name { get; set; } /// /// URl /// public string Url { get; set; } } }