using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace Edge.WebHost.Models.TankMonitor
{
    public class TankMonitorInfo
    {
        //public TankDetailsTotal tankdetails { get; set; }

        public string mqttConnectionString { get; set; }

        /// <summary>
        /// 用于图表查询页面
        /// </summary>
        public QueryInfo QueryInformation { get; set; }
        /// <summary>
        /// 据此判断当前需要显示哪一页面
        /// </summary>
        public PageNavigationInfo NavigationInfo { get; set; }

        public CurrentTank currentTank { get; set; }
    }

    public class CurrentTank
    {
        public string currentTankID { get; set; }

        public string currentFuelID { get; set; }

        public string currentFuelKind { get; set; }
    }
    //public class TankDetailsTotal
    //{
    //    public string testdata { get; set; }
    //    public string FuelVolume { get; set; }
    //    public string TankLastVolume { get; set; }
    //    public string Temperature { get; set; }
    //    public string TcVolume { get; set; }
    //    public string WaterVolume { get; set; }
    //    public string TankTotalVolume { get; set; }
    //    public string LastInventoryVolume { get; set; }
    //}
}