laatzen/Common/Ui/LegacyGenesisControl/DataPackage/TestSetupContainer.cs
Thomas Wiedebusch ef0d333d66 MeterSize moved from "Logic.PrdctionToProductMapper" to "ProductionOrderCore",
RegionRadio split to Region (string) and RadioFrequencyMhz (Int32?),
CoreRevision changed from string to Int32?,
Service\MeterProcessState\Controllers\GetCorondelFw changed to GetCordonelFw and corrected
2022-12-06 13:15:53 +01:00

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; }
}
}