aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/NotifyMachineDataDownloadCompletedRequest.cs
blob: fc135c2349ea4243724273274bfba3f93f905238 (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
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 NotifyMachineDataDownloadCompletedRequest : WebRequestMessage
    {
        public List<String> SynchronizedJobs { get; set; }
        public List<String> SynchronizedJobRuns { get; set; }
        public List<String> SynchronizedMachineEvents { get; set; }

        public NotifyMachineDataDownloadCompletedRequest()
        {
            SynchronizedJobs = new List<string>();
            SynchronizedJobRuns = new List<string>();
            SynchronizedMachineEvents = new List<string>();
        }
    }
}