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

21 lines
312 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.Rig.GenericDevices;
namespace TBF.Rig.DataEntry.Standard6
{
public class EntryForm : EntryFormNoStartEnd, IHasWMStatesForm
{
public EntryForm()
: base()
{
}
public EntryForm(Generic.IComponentCfg cfg)
: base(cfg)
{
}
}
}