1234567891011121314151617181920212223242526 |
- 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<ITankProbeConfiguration> TankProbes { get; }
- }
- }
|