aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Jobs/RemoteJobUpdateResponse.cs
blob: 0bb32d266c9c777e20388c9fa60fb0cf9c6ea699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.DTO;
using Tango.Core;

namespace Tango.PPC.Shared.Jobs
{
    public class RemoteJobUpdateResponse
    {
        public JobDTO Job { get; set; }
        public ProcessParametersTableDTO ProcessParameters { get; set; }
        public RemoteJobProgress Progress { get; set; }

        public RemoteJobUpdateResponse()
        {
            Progress = new RemoteJobProgress();
        }
    }
}