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-11-19 23:23:21 +04:00
|
|
|
public Guid GreenhouseId { get; set; }
|
2024-11-13 03:32:30 +04:00
|
|
|
public string CommandName { get; set; } = null!;
|
|
|
|
}
|
|
|
|
}
|