using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Wayne.ForecourtControl { public interface IPricePoleConfiguration { string PricePoleId { get; } int Type { get; } string ComChannelId { get; } int PhysicalAddress { get; } int InternalAddress { get; } int RefreshTime { get; } IEnumerable Grades { get; } } }