using System.Runtime.InteropServices;
namespace Wayne.ForecourtControl
{
///
/// Data structure carrying the information of a physical tank reading.
///
[ComVisible(true)]
public interface ITankReadingEx: ITankReading
{
///
/// Fuel level, read by the probe.
///
decimal FuelVolume { [return: MarshalAs(UnmanagedType.Currency)]get; }
///
/// Water level, read by the probe.
///
decimal WaterVolume { [return: MarshalAs(UnmanagedType.Currency)]get; }
}
}