aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs
blob: cc98bd4195ac41d5e4710cbe71571707c038057a (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.Entities;

namespace Tango.PPC.Common.RemoteJob
{
    public interface IRemoteJobInputOutputProvider
    {
        BrushStop CurrentBrushStop { get; }

        double CyanOutput { get; }
        double MagentaOutput { get; }
        double YellowOutput { get; }
        double BlackOutput { get; }
        double LightCyanOutput { get; }
        double LightMagentaOutput { get; }
        double LightYellowOutput { get; }
    }
}