23 lines
588 B
C#
23 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api.threedimensional
|
|
{
|
|
public class get_water_equipment
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<water_equipmentData> data { get; set; }
|
|
}
|
|
public class water_equipmentData
|
|
{
|
|
public decimal? Water { get; set; }
|
|
public decimal? OutletPressure { get; set; }
|
|
public decimal? Speed { get; set;}
|
|
public string State { get; set; }
|
|
}
|
|
}
|