#region --------------- Copyright Dresser Wayne Pignone ------------- /* * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Com/IPricePole.cs $ * * 1 07-03-09 15:34 roger.månsson * Created. */ #endregion using System.Runtime.InteropServices; namespace Wayne.ForecourtControl.Com { /// /// Represents a price display on the forecourt. The price display is constructed of a series of /// price display segments, that each display the price for one fuel grade in one price group. /// [ComVisible(true)] public interface IPricePole { #region Properties /// /// Price pole number /// int Id { get;} /// /// The connection state of the price pole. /// DeviceConnectionState ConnectionState { get;} /// /// An array of the display segments in the price pole. /// IPricePoleSegment[] DisplaySegments { get;} #endregion } }