21 lines
492 B
C#
21 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_electricity_consumption
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<electricity_consumptionData> data { get; set; }
|
|
}
|
|
public class electricity_consumptionData
|
|
{
|
|
public string time { get; set; }
|
|
public decimal? EH { get; set; }
|
|
}
|
|
}
|