13 lines
242 B
C#
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; }
|
|
}
|
|
}
|