aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Models
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-12-19 12:57:04 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-12-19 12:57:04 +0200
commitde762e7e5b346af5a12eff04cbaa0696eec15b8c (patch)
tree76368bb6e9f62af738ab8420c4db19079b702fa3 /Software/Visual_Studio/Web/Tango.MachineService/Models
parent0f5a0b13fc4408952d90d2450c642a7948b88879 (diff)
downloadTango-de762e7e5b346af5a12eff04cbaa0696eec15b8c.tar.gz
Tango-de762e7e5b346af5a12eff04cbaa0696eec15b8c.zip
Moved all web transport to json :/
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Models')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Models/PendingUpload.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Models/PendingUpload.cs b/Software/Visual_Studio/Web/Tango.MachineService/Models/PendingUpload.cs
new file mode 100644
index 000000000..f18b3756a
--- /dev/null
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Models/PendingUpload.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+
+namespace Tango.MachineService.Models
+{
+ public class PendingUpload
+ {
+ public String Token { get; set; }
+
+ public String Version { get; set; }
+
+ public String UserGuid { get; set; }
+
+ public String Comments { get; set; }
+
+ public String MachineVersionGuid { get; set; }
+
+ public String BlobName { get; set; }
+ }
+} \ No newline at end of file