using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Wayne.ForecourtControl { public interface ITankMonitorConfiguration { IDeviceIndex TankMonitorNumber { get; } int Type { get; } string ComChannelId { get; } int TimeBetweenReadings { get; } bool SendTransactions { get; } bool SendUnsolicitedMessages { get; } int DeliverySource { get; } IEnumerable TankProbes { get; } } }