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