12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface ITankProbeConfiguration
- {
- string TankProbeId { get; }
- ITankConfiguration Tank { get; }
- float FloatOffset { get; }
- float MinimumHeight { get; }
- int BoardNumber { get; }
- int Connector { get; }
- }
- }
|