16 lines
330 B
C#
16 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class export_carbon_trendData
|
|
{
|
|
public string time { get; set; }
|
|
public decimal? EH { get; set; }
|
|
public decimal? carbon { get; set; }
|
|
}
|
|
}
|