using System;
using System.Collections.Generic;
using System.Text;

namespace Dfs.WayneChina.FairbanksRTData.Support
{
    public class FbFuelDelivery
    {
        public string ibank { get; set; }

        public int Tank { get; set; }

        public DateTime StartDateTime { get; set; }

        public decimal StartVolume { get; set; }

        public decimal StartWater { get; set; }

        public decimal StartTemperature { get; set; }

        public DateTime EndDateTime { get; set; }

        public decimal EndVolume { get; set; }

        public decimal EndWater { get; set; }

        public decimal EndTemperature { get; set; }

        public decimal Quantity { get; set; }

        public decimal ConfirmedQuantity { get; set; }
    }
}