21 lines
304 B
C#
21 lines
304 B
C#
///
|
|
/// Copyright (c) 2023 Sensus Slovensko a.s.
|
|
///
|
|
using TBF.Rig.GenericDevices;
|
|
|
|
namespace TBF.Rig.DataEntry.Uni
|
|
{
|
|
public class EntryForm : EntryFormNoStartEnd, IHasWMStatesForm
|
|
{
|
|
public EntryForm()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
public EntryForm(Generic.IComponentCfg cfg)
|
|
: base(cfg)
|
|
{
|
|
}
|
|
}
|
|
}
|