using Newtonsoft.Json.Linq;
namespace MCPForUnity.Editor.Models
{
///
/// Represents a command received from the MCP client
///
public class Command
{
///
/// The type of command to execute
///
public string type { get; set; }
///
/// The parameters for the command
///
public JObject @params { get; set; }
}
}