17 lines
285 B
C#
17 lines
285 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace TBF.BenchControl
|
|||
|
|
{
|
|||
|
|
public class CmdResponseArgs : EventArgs
|
|||
|
|
{
|
|||
|
|
public CfgChangeCmd Command;
|
|||
|
|
public int Response;
|
|||
|
|
|
|||
|
|
public CmdResponseArgs(CfgChangeCmd command, int response)
|
|||
|
|
{
|
|||
|
|
Command = command;
|
|||
|
|
Response = response;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|