123456789101112131415161718192021222324 |
- 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<IPricePoleGradeConfiguration> Grades { get; }
- }
- }
|