27 lines
657 B
C#
27 lines
657 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; }
|
|
|
|
public MeterTestResults[] meterTestResults { get; set; }
|
|
|
|
|
|
}
|
|
}
|