using System;
using System.Collections.Generic;
using System.Text;
namespace Dfs.WayneChina.HengshanPos
{
///
/// Enumeration of the pump fueling state
/// from nozzle lift until nozzle returned
///
public enum FuelingState
{
///
/// Indicates the pump is calling.
///
Ready,
///
/// Represents the pump is authorized.
///
Authorized,
///
/// Indicates the fueling is ongoing, fueling data is received.
///
Running,
///
/// Represents the fueling is completed.
///
Completed
}
}