tbf/TBF/Rig/CmdResponseArgs.cs
2021-10-26 19:38:09 +02:00

22 lines
457 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
namespace TBF.Rig
{
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;
}
}
}