2024-11-19 23:23:21 +04:00
|
|
|
using System.Text.Json;
|
|
|
|
|
2024-11-13 03:32:30 +04:00
|
|
|
namespace Cloud.Services.Broker.Support
|
|
|
|
{
|
2024-11-19 23:23:21 +04:00
|
|
|
public class Command
|
2024-11-13 03:32:30 +04:00
|
|
|
{
|
2024-12-22 19:46:36 +04:00
|
|
|
public Guid request_id { get; set; }
|
|
|
|
public int greenhouse_id { get; set; }
|
|
|
|
public int? farm_id { get; set; }
|
|
|
|
public string command { get; set; }
|
|
|
|
public float? target_moisture{ get; set; }
|
|
|
|
public float? target_temp { get; set; }
|
|
|
|
}
|
2024-11-13 03:32:30 +04:00
|
|
|
}
|