Cucumber/Cloud/Services/Broker/Support/Command.cs

9 lines
220 B
C#
Raw Normal View History

namespace Cloud.Services.Broker.Support
{
public class Command
{
public int Id { get; set; }
public int GreenhouseId { get; set; }
public string CommandName { get; set; } = null!;
}
}