28 lines
722 B
C#
28 lines
722 B
C#
using Logic.ProductionToProductMapper.Cordonel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using XylemCommonUiLegacyGenCtl.Enums;
|
|
|
|
namespace XylemCommonUiLegacyGenCtl.DataPackage
|
|
{
|
|
public class TestSetupContainer
|
|
{
|
|
public bool WatingForDecision { get; set; } = true;
|
|
|
|
public bool DirectStart { get; set; } = false;
|
|
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; }
|
|
}
|
|
}
|