tbf/TestBenchFramework/BenchControl/GenericDevices/IDiverter.cs

13 lines
242 B
C#
Raw Normal View History

using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IDiverter : IComponent
{
/// <summary>
/// Diverter state: true = to tank, false = bypass tank
/// </summary>
bool State { get; }
}
}