10 lines
209 B
C#
10 lines
209 B
C#
using System.Text.Json;
|
|
|
|
namespace Cloud.Services.Broker.Support
|
|
{
|
|
public class Command
|
|
{
|
|
public Guid GreenhouseId { get; set; }
|
|
public string CommandName { get; set; } = null!;
|
|
}
|
|
} |