using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Console.Network
{
public class ConsoleCommandResponse
{
public String WorkingFolder { get; set; }
public String Output { get; set; }
public List<ConsoleSuggestion> Suggestions { get; set; }
public ConsoleCommandResponse()
{
Suggestions = new List<ConsoleSuggestion>();
}
}
}