32 lines
847 B
C#
32 lines
847 B
C#
using GenesisZeroFlow;
|
|
using System;
|
|
using System.Globalization;
|
|
using System.Threading;
|
|
|
|
namespace GenesisDisplayTool.Itinerary
|
|
{
|
|
public class ProcessProgress
|
|
{
|
|
public CultureInfo Culture;
|
|
public String[] Passwords;
|
|
public String[] ThermoPasswords;
|
|
public Boolean[] MeterEnable;
|
|
public Boolean[] ThermoEnable;
|
|
public bool AtLeastOneMeterPresent;
|
|
public bool AtLeastOneThermometerPresent;
|
|
|
|
public Boolean StopSequence;
|
|
public Boolean Aborted;
|
|
|
|
public Boolean[] AllOk;
|
|
public Boolean[] MeterOk;
|
|
public Boolean[] ThermoOk;
|
|
|
|
public Double UpperTempLimit;
|
|
public Double LowerTempLimit;
|
|
public Double TempDeviationLimit;
|
|
public CancellationTokenSource CancellationSource = new CancellationTokenSource();
|
|
|
|
}
|
|
}
|