tbf/TBF/BenchControl/GenericDevices/IDataEntry.cs

18 lines
440 B
C#

///
/// Copyright (c) 2013-2019 Sensus Slovensko a.s.
///
using System.Collections.Generic;
using Config.Entities;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.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; }
}
}