aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Console/Network/GetCurrentDirectoryResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Console/Network/GetCurrentDirectoryResponse.cs')
-rw-r--r--Software/Visual_Studio/Tango.Console/Network/GetCurrentDirectoryResponse.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Console/Network/GetCurrentDirectoryResponse.cs b/Software/Visual_Studio/Tango.Console/Network/GetCurrentDirectoryResponse.cs
new file mode 100644
index 000000000..7b6eedda0
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Console/Network/GetCurrentDirectoryResponse.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Console.Network
+{
+ public class GetCurrentDirectoryResponse
+ {
+ public String CurrentDirectory { get; set; }
+ public List<ConsoleSuggestion> Suggestions { get; set; }
+
+ public GetCurrentDirectoryResponse()
+ {
+ Suggestions = new List<ConsoleSuggestion>();
+ }
+ }
+}