14 lines
373 B
C#

using System.Text.Json;
namespace Cloud.Services.Broker.Support
{
public class Command
{
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; }
}
}