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