using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.DTO { /// /// 采集结果 /// [Serializable] public class AdcResultDto { /// /// 采集结果 /// public AdcResultDto() { FileList = new List(); } /// /// 构造函数 /// public AdcResultDto(DateTime startTime) : this() { StartTime = startTime; } /// /// 开始时间 /// public DateTime StartTime { get; set; } /// /// 文件列表 /// public List FileList { get; set; } } }