tbf/TestBenchFramework/BenchControl/GenericDevices/IDiverter.cs
2014-07-28 09:56:40 +02:00

13 lines
242 B
C#

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