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