using Ips.Library.Signals; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; using System.Text.Json.Serialization; namespace Ips.Library.Entity { /// /// 采集结果 /// [Serializable] public class AdcResult { /// /// 采集结果 /// public AdcResult() { FileList = new List(); } public AdcResult(DateTime startTime, string storePath) : this() { StartTime = startTime; StorePath = storePath; } public DateTime StartTime { get; set; } public string StorePath { get; set; } /// /// 文件列表 /// public List FileList { get; set; } } }