aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2024-03-10 16:26:32 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2024-03-10 16:26:32 +0200
commit6dbef47fe2ca696fcf11ce4c2d0662c28b36bf35 (patch)
tree4acde5e7e00c919e57c8e09e30179dfb14b2e36c /Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs
parent0e4045af38f59004c537e9bf5e7f2e89f7320f1f (diff)
downloadTango-6dbef47fe2ca696fcf11ce4c2d0662c28b36bf35.tar.gz
Tango-6dbef47fe2ca696fcf11ce4c2d0662c28b36bf35.zip
FSE Remote Job Parameters.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs
new file mode 100644
index 000000000..cc98bd419
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/IRemoteJobInputOutputProvider.cs
@@ -0,0 +1,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; }
+ }
+}