using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.FairbanksRTData.Support { public class FbFillingTransaction { /// <summary> /// Site/Device ID /// </summary> public string ibank { get; set; } /// <summary> /// Start time of the fueling /// </summary> public DateTime StartDateTime { get; set; } /// <summary> /// End time of the fueling /// </summary> public DateTime EndDateTime { get; set; } /// <summary> /// Pump ID /// </summary> public int Pump { get; set; } /// <summary> /// Nozzle ID /// </summary> public int Nozzle { get; set; } /// <summary> /// Fueling volume /// </summary> public decimal QTY { get; set; } } }