tbf/TBF/BenchControl/DataEntry/Single/EntryForm.cs
2019-01-16 10:55:30 +02:00

21 lines
325 B
C#

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