9 lines
220 B
C#
9 lines
220 B
C#
|
namespace Cloud.Services.Broker.Support
|
||
|
{
|
||
|
public class Command
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public int GreenhouseId { get; set; }
|
||
|
public string CommandName { get; set; } = null!;
|
||
|
}
|
||
|
}
|