From 42c06402ff6648c356fba8315958283762ed2542 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 25 Mar 2020 00:26:47 +0200 Subject: Added Download menu implementation to file system. Added several stun and turn servers to web rtc. --- .../Tango.FileSystem/Network/CreateFolderRequest.cs | 14 ++++++++++++++ .../Tango.FileSystem/Network/CreateFolderResponse.cs | 13 +++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderRequest.cs create mode 100644 Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderResponse.cs (limited to 'Software/Visual_Studio/Tango.FileSystem/Network') diff --git a/Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderRequest.cs b/Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderRequest.cs new file mode 100644 index 000000000..77452dcdf --- /dev/null +++ b/Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderRequest.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.FileSystem.Network +{ + public class CreateFolderRequest + { + public String Path { get; set; } + public String FolderName { get; set; } + } +} diff --git a/Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderResponse.cs b/Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderResponse.cs new file mode 100644 index 000000000..d52e52c47 --- /dev/null +++ b/Software/Visual_Studio/Tango.FileSystem/Network/CreateFolderResponse.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.FileSystem.Network +{ + public class CreateFolderResponse + { + public FileSystemItemDTO FolderItem { get; set; } + } +} -- cgit v1.3.1