aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/FineTuning/VectorFineTuningRunModel.cs
blob: a0147e0bdf2eb60dad54cf8f4d233683e5253aad (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
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Enumerations;

namespace Tango.BL.FineTuning
{
    public class VectorFineTuningRunModel
    {
        public FineTuningTypes Type { get; set; }
        public String JobName { get; set; }
        public String FineTuningSessionID { get; set; }
        public int FineTuningTrialNumber { get; set; }
        public double FineTuningTargetL { get; set; }
        public double FineTuningTargetA { get; set; }
        public double FineTuningTargetB { get; set; }
        public double FineTuningSuggestionL { get; set; }
        public double FineTuningSuggestionA { get; set; }
        public double FineTuningSuggestionB { get; set; }
        public double? FineTuningMeasuredL { get; set; }
        public double? FineTuningMeasuredA { get; set; }
        public double? FineTuningMeasuredB { get; set; }


        //Manual
        public double Lightness { get; set; }
        public double Chroma { get; set; }
        public double Hue { get; set; }

        public double? DeltaL { get; set; }
        public double? DeltaH { get; set; }
        public double? DeltaC { get; set; }

        public double? DeltaE { get; set; }

        public bool CorrectOnlyHue { get; set; }

        public bool Approved { get; set; }
    }
}