20 lines
395 B
C#
20 lines
395 B
C#
///
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.Elde.RegulValveMilwaukee
|
|
{
|
|
public class RegulValveCfgChangeArgs : EventArgs
|
|
{
|
|
public CfgChangeCmd Command;
|
|
public Generic.IComponentCfg Cfg;
|
|
|
|
public RegulValveCfgChangeArgs(CfgChangeCmd command, Generic.IComponentCfg cfg)
|
|
{
|
|
Command = command;
|
|
Cfg = cfg;
|
|
}
|
|
}
|
|
}
|