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

21 lines
313 B
C#

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