aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.FileSystem/Network/StartFileDownloadResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.FileSystem/Network/StartFileDownloadResponse.cs')
-rw-r--r--Software/Visual_Studio/Tango.FileSystem/Network/StartFileDownloadResponse.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.FileSystem/Network/StartFileDownloadResponse.cs b/Software/Visual_Studio/Tango.FileSystem/Network/StartFileDownloadResponse.cs
new file mode 100644
index 000000000..187d15254
--- /dev/null
+++ b/Software/Visual_Studio/Tango.FileSystem/Network/StartFileDownloadResponse.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.FileSystem.Network
+{
+ public class StartFileDownloadResponse
+ {
+ public byte[] Data { get; set; }
+ public long Position { get; set; }
+ public long Length { get; set; }
+ }
+}