ITankMonitorConfiguration.cs 531 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface ITankMonitorConfiguration
  8. {
  9. IDeviceIndex TankMonitorNumber { get; }
  10. int Type { get; }
  11. string ComChannelId { get; }
  12. int TimeBetweenReadings { get; }
  13. bool SendTransactions { get; }
  14. bool SendUnsolicitedMessages { get; }
  15. int DeliverySource { get; }
  16. IEnumerable<ITankProbeConfiguration> TankProbes { get; }
  17. }
  18. }