LonglslandExhibitionCenter/DataService/api/get_real_load.cs

21 lines
449 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataService.api
{
public class get_real_load
{
public int code { get; set; }
public string msg { get; set; }
public List<real_loadData> data { get; set; }
}
public class real_loadData
{
public string time { get; set; }
public decimal? P { get; set; }
}
}