blob: fda7a46661ea9fc8864d67c1aabbb484a259211c (
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 NotifyMachineDataDownloadCompletedRequest : WebRequestMessage
{
public List<String> SynchronizedJobs { get; set; }
public List<String> SynchronizedJobRuns { get; set; }
public List<String> SynchronizedMachineEvents { get; set; }
public List<String> SynchronizedDataStoreItems { get; set; }
public NotifyMachineDataDownloadCompletedRequest()
{
SynchronizedJobs = new List<string>();
SynchronizedJobRuns = new List<string>();
SynchronizedMachineEvents = new List<string>();
SynchronizedDataStoreItems = new List<string>();
}
}
}
|