blob: 85dd66f7cc2db5df80633eabff77e59ed6930001 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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; }
List<LiquidOutputModel> LiquidOutputs { get; set; }
}
}
|