using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api.threedimensional { public class get_coal_equipment { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class coal_equipmentData { public decimal? Coal { get; set; } public string State { get; set; } public decimal? Carbon { get; set;} } }