using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.FairbanksRTData.Support { public class FbTankReading { /// /// Site/Device ID /// public string ibank { get; set; } /// /// Time stamp of the reading /// public DateTime DateTime { get; set; } /// /// Tank id /// public int Tank { get; set; } /// /// Current volume /// public decimal QTY { get; set; } /// /// Fuel temperature /// public decimal Temperature { get; set; } /// /// Water level /// public decimal Water { get; set; } /// /// Fuel level /// public decimal Height { get; set; } } }