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

namespace DataService.api
{
    public class get_realtime_load
    {
        public int code { get; set; }
        public string msg { get; set; }
        public List<realtime_loadData> data { get; set; }
    }
    public class realtime_loadData
    {
        public int Amount { get; set; }
        public decimal? P { get; set; }
        public decimal? EH { get; set; }
    }
}