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

9 lines
259 B
C#
Raw Normal View History

namespace Cloud.Services.Broker.Support
{
public class CommandResult : IBrokerResponse
{
public int CommandId { get; set; }
public int GreenhouseId { get; set; }
public string ResultMessage { get; set; } = string.Empty;
}
}