2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2015-01-02 22:42:01 +00:00
|
|
|
|
|
2021-10-26 09:23:57 +00:00
|
|
|
|
namespace TBF.Rig
|
2015-01-02 22:42:01 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class CfgChangeArgs : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public CfgChangeCmd Command;
|
|
|
|
|
|
public Generic.IComponentCfg Cfg;
|
|
|
|
|
|
|
|
|
|
|
|
public CfgChangeArgs(CfgChangeCmd command, Generic.IComponentCfg cfg)
|
|
|
|
|
|
{
|
|
|
|
|
|
Command = command;
|
|
|
|
|
|
Cfg = cfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|