tbf/TestBenchFramework/BenchControl/CmdResponseArgs.cs
2015-04-15 20:32:56 +02:00

22 lines
405 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
namespace TBF.BenchControl
{
public class CmdResponseArgs : EventArgs
{
public CfgChangeCmd Command;
public int Idx1;
public int Response;
public CmdResponseArgs(CfgChangeCmd command, int idx1, int response)
{
Command = command;
Idx1 = idx1;
Response = response;
}
}
}