RegionRadio split to Region (string) and RadioFrequencyMhz (Int32?), CoreRevision changed from string to Int32?, Service\MeterProcessState\Controllers\GetCorondelFw changed to GetCordonelFw and corrected
23 lines
589 B
C#
23 lines
589 B
C#
using Xylem.Common.Logic.ProductionOrderCore.OrderData;
|
|
using XylemCommonUiLegacyGenCtl.Enums;
|
|
|
|
namespace XylemCommonUiLegacyGenCtl.DataPackage
|
|
{
|
|
public class TestSetupContainer
|
|
{
|
|
public bool WatingForDecision { get; set; } = true;
|
|
|
|
public TempSouceType TempSouce { get; set; }
|
|
|
|
public MeterSize MeterSize { get; set; }
|
|
|
|
public int DelayInSBeforStart { get; set; }
|
|
|
|
public bool AllChanelsRequired { get; set; }
|
|
|
|
public bool ProductionMode { get; set; }
|
|
|
|
public MeterTestSettings[] meterTestSettings { get; set; }
|
|
}
|
|
}
|