using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.api { public class get_energy_flow { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class energy_flowData { public decimal? Amont { get; set; } public List data { get; set; } } public class energy_flow { public decimal? AirConditioner { get; set; } public decimal? Illumination { get; set; } public decimal? Elevator { get; set;} } }