21 lines
437 B
C#
21 lines
437 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IPump : IComponent
|
|
{
|
|
/// <summary>
|
|
/// Pump state: true = on, false = off
|
|
/// </summary>
|
|
bool State { get; }
|
|
|
|
/// <summary>
|
|
/// Delay of the valve in [s] (open or close time, whichever is larger)
|
|
/// </summary>
|
|
int Delay { get; }
|
|
}
|
|
}
|