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_electrical_condition
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<electrical_conditionData> data { get; set; }
|
|
}
|
|
public class electrical_conditionData
|
|
{
|
|
public decimal? EH { get; set; }
|
|
public decimal? Electricity { get; set; }
|
|
}
|
|
}
|