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

namespace Tango.PPC.Shared.Jobs
{
    public class RemoteJobProgress
    {
        public RemoteJobStage Stage { get; set; }
        public JobStatus JobStatus { get; set; }
        public RemoteJobInputOutput InputOutput { get; set; }

        public RemoteJobProgress()
        {
            JobStatus = new JobStatus();
            InputOutput = new RemoteJobInputOutput();
        }
    }
}