28 lines
701 B
C#
28 lines
701 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_flux
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<carbon_fluxData> data { get; set; }
|
|
}
|
|
public class carbon_fluxData
|
|
{
|
|
public decimal? Amount { get; set; }
|
|
public List<carbon_flux> data { get; set; }
|
|
}
|
|
public class carbon_flux
|
|
{
|
|
public decimal? AirConditioner { get; set; }
|
|
public decimal? Lighting { get; set; }
|
|
public decimal? Elevator { get; set;}
|
|
public decimal? Other { get; set;}
|
|
}
|
|
}
|