12 lines
365 B
C#
12 lines
365 B
C#
namespace Cloud.Services.Broker.Support
|
|
{
|
|
public class GreenhouseInfo
|
|
{
|
|
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; }
|
|
}
|
|
} |