aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/RemoteSystemsTempFiles
ModeNameSize
-rw-r--r--.project277logstatsplain
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>();
        }
    }
}