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

21 lines
307 B
C#

///
/// Copyright (c) 2018 Sensus Slovensko a.s.
///
using TBF.Rig.GenericDevices;
namespace TBF.Rig.DataEntry.Single
{
public class EntryForm : EntryFormNoStartEnd, IHasWMStatesForm
{
public EntryForm()
: base()
{
}
public EntryForm(Generic.IComponentCfg cfg)
: base(cfg)
{
}
}
}