aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs
deleted file mode 100644
index e90c7c2ac..000000000
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-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 DownloadMachineDataResponse : WebResponseMessage
- {
- public List<JobDTO> Jobs { get; set; }
- public List<JobRunDTO> JobRuns { get; set; }
- public List<MachinesEventDTO> MachineEvents { get; set; }
- public List<DataStoreItemDTO> DataStoreItems { get; set; }
-
- public DownloadMachineDataResponse()
- {
- Jobs = new List<JobDTO>();
- JobRuns = new List<JobRunDTO>();
- MachineEvents = new List<MachinesEventDTO>();
- DataStoreItems = new List<DataStoreItemDTO>();
- }
- }
-}