using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.Common.CommonData.Loader
{
public class LoaderLotTrackData
{
public DateTime TimeStamp { get; set; }
///
/// SideA
///
public bool LoaderABernoulliBladderEnable { get; set; }
public bool LoaderABernoulliExtended { get; set; }
public double LoaderABernoulliBladderPressure { get; set; }
public double LoaderABernoulliN2Pressure { get; set; }
public bool LoaderACRSVacuum { get; set; }
public double LoaderACRSVacuumAnlg { get; set; }
public double LoaderATranslatePressure { get; set; }
public double LoaderAWHPressure { get; set; }
///
/// Side B
///
public bool LoaderBBernoulliBladderEnable { get; set; }
public bool LoaderBBernoulliExtended { get; set; }
public double LoaderBBernoulliBladderPressure { get; set; }
public double LoaderBBernoulliN2Pressure { get; set; }
public bool LoaderBCRSVacuum { get; set; }
public double LoaderBCRSVacuumAnlg { get; set; }
public double LoaderBTranslatePressure { get; set; }
public double LoaderBWHPressure { get; set; }
public bool LoaderWHClamped { get; set; }
}
}