tbf/TestBenchFramework/BenchControl/CmdResponseArgs.cs

22 lines
405 B
C#
Raw Normal View History

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