You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.DB.Model
{
public class T1PrModel
{
public bool bottle1LowLiquidSignal { get; set; }
public bool bottle1LowLowLiquidSignal { get; set; }
public bool bottle2LowLiquidSignal { get; set; }
public bool bottle2LowLowLiquidSignal { get; set; }
public bool bottle3LowLiquidSignal { get; set; }
public bool bottle3LowLowLiquidSignal { get; set; }
public bool wasteLiquidTankHighLiquidSignal { get; set; }
public bool pump1ValveIn { get; set; }
public bool pump1ValveOut { get; set; }
public bool pump1ValveDia { get; set; }
public bool pump1ValveVac { get; set; }
public bool pump2ValveIn { get; set; }
public bool pump2ValveOut { get; set; }
public bool pump2ValveDia { get; set; }
public bool pump2ValveVac { get; set; }
public bool pump3ValveIn { get; set; }
public bool pump3ValveOut { get; set; }
public bool pump3ValveDia { get; set; }
public bool pump3ValveVac { get; set; }
public bool hp1N2 { get; set; }
public bool hp2N2 { get; set; }
}
}