using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.api { public class get_carbon_flux { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class carbon_fluxData { public decimal? Amount { get; set; } public List data { get; set; } } public class carbon_flux { public decimal? AirConditioner { get; set; } public decimal? Lighting { get; set; } public decimal? Elevator { get; set;} public decimal? Other { get; set;} } }