22 lines
516 B
C#
22 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_consumption_trend
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<consumption_trendData> data { get; set; }
|
|
}
|
|
public class consumption_trendData
|
|
{
|
|
public string time { get; set; }
|
|
public decimal? Energy { get; set; }
|
|
}
|
|
}
|