19 lines
345 B
C#
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;
|
|
}
|
|
}
|
|
}
|