using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api.threedimensional { public class get_facility_information { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class facility_informationData { public decimal? EH { get; set; } public string State { get; set; } public decimal? P { get; set; } } }