18 lines
422 B
C#
18 lines
422 B
C#
///
|
|
/// Copyright (c) 2013-2019 Sensus Slovensko a.s.
|
|
///
|
|
using System.Collections.Generic;
|
|
using Config.Entities;
|
|
using TBF.Rig.Generic;
|
|
|
|
namespace TBF.Rig.GenericDevices
|
|
{
|
|
public interface IDataEntry : IComponent
|
|
{
|
|
/// <summary>
|
|
/// true when DataEntry dialog was completed or when it does not support IHasCompleted (to avoid TBF freeze).
|
|
/// </summary>
|
|
bool Completed { get; }
|
|
}
|
|
}
|