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