aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/DownloadMachineDataResponse.cs
blob: e90c7c2ac8b0dcaafdfae70d53ff361f9b2af5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 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>();
        }
    }
}