tbf/TBF/Rig/GenericDevices/IDataEntry.cs
2021-03-05 16:12:24 +01:00

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; }
}
}