ITankProbeConfiguration.cs 402 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface ITankProbeConfiguration
  8. {
  9. string TankProbeId { get; }
  10. ITankConfiguration Tank { get; }
  11. float FloatOffset { get; }
  12. float MinimumHeight { get; }
  13. int BoardNumber { get; }
  14. int Connector { get; }
  15. }
  16. }