| 12345678910111213141516171819202122232425 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.CommonData.Loader{    public class LoaderFlowLotTrackData    {        public DateTime TimeStamp { get; set; }        public string Time { get; set; }        public bool LoaderWHClamped { get; set; }        public bool LoaderACRSVacuum { get; set; }        public double LoaderACRSVacuumAnlg { get; set; }        public bool LoaderBCRSVacuum { get; set; }        public double LoaderBCRSVacuumAnlg { get; set; }                       public bool EnableVacuum { get; set; }        public bool EnableFlowClamp { get; set; }        public bool FlowClamp { get;set; }        public bool FlowVacuum { get; set; }        public double FlowValue { get; set; }    }}
 |