blob: d17cc8d42b0373ea66331135065093b378d683ef (
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
31
32
33
34
35
36
37
38
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Enumerations;
namespace Tango.PPC.Shared.Statistics
{
public class PresentationBrushStop
{
public ColorSpaces ColorSpace { get; set; }
public double StartMeters { get; set; }
public int Red { get; set; }
public int Green { get; set; }
public int Blue { get; set; }
public double L { get; set; }
public double A { get; set; }
public double B { get; set; }
public double Cyan { get; set; }
public double Magenta { get; set; }
public double Yellow { get; set; }
public double Black { get; set; }
public String Catalog { get; set; }
public String CatalogItem { get; set; }
public int BestMatchR { get; set; }
public int BestMatchG { get; set; }
public int BestMatchB { get; set; }
public List<PresentationLiquidVolume> LiquidVolumes { get; set; }
public PresentationBrushStop()
{
LiquidVolumes = new List<PresentationLiquidVolume>();
}
}
}
|