2024-11-13 03:32:30 +04:00
|
|
|
namespace Cloud.Services.Broker.Support
|
|
|
|
{
|
2024-11-19 23:23:21 +04:00
|
|
|
public class GreenhouseInfo : IBrokerResponse
|
2024-11-13 03:32:30 +04:00
|
|
|
{
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|