34 lines
857 B
C#
34 lines
857 B
C#
///
|
|
/// Copyright (c) 2019 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using Dirichlet.Numerics;
|
|
|
|
namespace TBF.BenchControl.Elde
|
|
{
|
|
public class SendCommandArgs
|
|
{
|
|
public Command Cmd;
|
|
public int RefFlowmtrNr;
|
|
public int TotalRefPulses;
|
|
public int MassRefPulses;
|
|
public TestMethods TestMethods;
|
|
public StopDevs StopDevs;
|
|
|
|
public SendCommandArgs()
|
|
{
|
|
}
|
|
|
|
public SendCommandArgs(Command cmd, int refFlowmtrNr, int totalRefPulses, int massRefPulses,
|
|
TestMethods testMethods, StopDevs stopDevs)
|
|
{
|
|
Cmd = cmd;
|
|
RefFlowmtrNr = refFlowmtrNr;
|
|
TotalRefPulses = totalRefPulses;
|
|
MassRefPulses = massRefPulses;
|
|
TestMethods = testMethods;
|
|
StopDevs = stopDevs;
|
|
}
|
|
}
|
|
}
|