/// /// 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 { /// /// true when DataEntry dialog was completed or when it does not support IHasCompleted (to avoid TBF freeze). /// bool Completed { get; } } }