namespace Cloud.Requests { public class WebhookData { public int request_id { get; set; } public int greenhouse_id { get; set; } public float moisture { get; set; } public float target_moisture { get; set; } public string valveStatus { get; set; } public float temp { get; set; } public float target_temp { get; set; } public string heaterStatus { get; set; } public bool isAutoOn { get; set; } } }