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