tbf/TestBenchFramework/BenchControl/GenericDevices/IPump.cs

13 lines
221 B
C#
Raw Normal View History

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