tbf/TBF/Rig/CmdResponseArgs.cs
2021-03-05 16:12:24 +01:00

22 lines
456 B
C#

///
/// Copyright (c) 2021 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 Int16 Response;
public CmdResponseArgs(CfgChangeCmd command, int id, Int16 response)
{
Command = command;
Id = id;
Response = response;
}
}
}