IPricePoleConfiguration.cs 462 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Wayne.ForecourtControl
  6. {
  7. public interface IPricePoleConfiguration
  8. {
  9. string PricePoleId { get; }
  10. int Type { get; }
  11. string ComChannelId { get; }
  12. int PhysicalAddress { get; }
  13. int InternalAddress { get; }
  14. int RefreshTime { get; }
  15. IEnumerable<IPricePoleGradeConfiguration> Grades { get; }
  16. }
  17. }