///
/// Copyright (c) 2017 Sensus Metering Systems
///
namespace TBF.BenchControl.GenericDevices
{
public interface ITankDrainingCfg
{
///
/// Max. mass of water in 'kg' or volume in 'l'
///
float Capacity { get; }
///
/// 'Empty' water mass in 'kg' or volume in 'l'
///
float Empty { get; }
///
/// Time in [s] to drain the tank completely
///
int DrainTimeSec { get; }
///
/// Name of the drain valve
///
string DrainValve { get; }
}
}