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 Tanks { get; } } }