tbf/TBF/BenchControl/CmdResponseArgs.cs

22 lines
466 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
namespace TBF.BenchControl
{
public class CmdResponseArgs : EventArgs
{
public CfgChangeCmd Command;
public int Id; /// Either Idx1(RV) or BitPosition (Div) to identify the component
public int Response;
public CmdResponseArgs(CfgChangeCmd command, int id, int response)
{
Command = command;
Id = id;
Response = response;
}
}
}