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

13 lines
221 B
C#

using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IPump : IComponent
{
/// <summary>
/// Pump state: true = on, false = off
/// </summary>
bool State { get; }
}
}