- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Wayne.ForecourtControl
- {
- public interface ITankSuctionConfiguration
- {
- int Id { get; }
- string Identifier { get; }
- IEnumerable<ITankConfiguration> Tanks { get; }
- }
- }
|