22 lines
514 B
C#
22 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_fault_condition
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<fault_conditionData> data { get; set; }
|
|
}
|
|
public class fault_conditionData
|
|
{
|
|
public int Amount { get; set; }
|
|
public int Normality { get; set; }
|
|
public int Malfunction { get; set; }
|
|
}
|
|
}
|