using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.Eta.Model { /// /// /// public class LogicAnaInfoBundle { /// /// /// public long LogicID { get; set; } /// /// /// public List ChildStationBundleList { get; set; } /// /// /// public List< IStation.Calculation.Eta.Model.LogicAnaInfoBundle> ChildLogicBundleList { get; set; } /// /// /// protected IStation.Model.EtaLogicRealRecordPure _result = null; /// /// /// public IStation.Model.EtaLogicRealRecordPure AnaResult { get { return _result; } set { _result = value; } } } }