blob: 0fa5a15c658303a1f0d69cf73ffff85a2aaed5d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Operation
{
public class AdditionalJobConfiguration
{
public class ResumeConfiguration
{
public int RemainingUnits { get; set; }
public double GlobalStartPosition { get; set; }
public double FirstUnitStartPosition { get; set; }
public double ResumeProgress { get; set; }
}
public double LubricationVolume { get; set; }
public bool UseLubricantVolume { get; set; }
public bool UseColorConversion { get; set; }
public bool UseLightInks { get; set; }
public ResumeConfiguration ResumeConfig { get; set; }
public AdditionalJobConfiguration()
{
LubricationVolume = 100;
}
}
}
|