12 lines
382 B
C#
12 lines
382 B
C#
namespace Cloud.Services.Broker.Support
|
|
{
|
|
public class GreenhouseInfo : IBrokerResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public int PercentWater { get; set; }
|
|
public int SoilTemperature { get; set; }
|
|
public bool PumpStatus { get; set; }
|
|
public bool HeatingStatus { get; set; }
|
|
public bool AutoWateringStatus { get; set; }
|
|
}
|
|
} |