aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Jobs/RemoteJobInputOutput.cs
blob: e6c39a0249694d68d480cd8583d75a342428f659 (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.Enumerations;

namespace Tango.PPC.Shared.Jobs
{
    public class RemoteJobInputOutput
    {
        public ColorSpaces ColorSpace { get; set; }
        public List<Tuple<String, String>> Input { get; set; }
        public List<Tuple<String, String>> Output { get; set; }

        public RemoteJobInputOutput()
        {
            Input = new List<Tuple<string, String>>();
            Output = new List<Tuple<string, String>>();
        }
    }
}