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; } } }