tbf/TestBenchFramework/BenchControl/CmdResponseArgs.cs
2015-03-25 13:52:51 +01:00

19 lines
345 B
C#

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