using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity { public class AllSecs { public OrderMst Mst { get; set; } public List Orders { get; set; } = new List(); public List OrderDatas { get; set; } = new List(); public List OrderRelations { get; set; } = new List(); public List OrderEvents { get; set; } = new List(); public List ReportMsts { get; set; } = new List(); public List ReportDetails { get; set; } = new List(); public List EventReportDetails { get; set; } = new List(); } }