aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Console/Network/ConsoleCommandResponse.cs')
-rw-r--r--Software/Visual_Studio/Tango.Console/Network/ConsoleCommandResponse.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandResponse.cs b/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandResponse.cs
new file mode 100644
index 000000000..70b72e703
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Console/Network/ConsoleCommandResponse.cs
@@ -0,0 +1,20 @@
+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>();
+ }
+ }
+}