using System; using System.Collections.Generic; using System.Text; namespace HengshanPaymentTerminal.Support { /// /// Represents a fueling point which is the combination of the nozzle and pump. /// 加油点(0x00=所有加油点)。 /// public class FuelingPointCode { /// /// Nozzle number on the current fueling point. /// 当前加油点的油枪号。 /// public byte NozzleNo { get; set; } /// /// The pump number aka fueling point number. /// 油点号/泵号。 /// public byte PumpNo { get; set; } } }