aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataRequest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataRequest.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataRequest.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataRequest.cs
new file mode 100644
index 000000000..dc0b05988
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/UploadMachineDataRequest.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.DTO;
+using Tango.Transport.Web;
+
+namespace Tango.PPC.Common.Web
+{
+ public class UploadMachineDataRequest : WebRequestMessage
+ {
+ public List<JobDTO> Jobs { get; set; }
+ public List<JobRunDTO> JobRuns { get; set; }
+ public List<MachinesEventDTO> MachineEvents { get; set; }
+ public String ApplicationVersion { get; set; }
+ public String FirmwareVersion { get; set; }
+
+ public UploadMachineDataRequest()
+ {
+ Jobs = new List<JobDTO>();
+ JobRuns = new List<JobRunDTO>();
+ MachineEvents = new List<MachinesEventDTO>();
+ }
+ }
+}