21 lines
307 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|