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