aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2021-11-01 14:53:16 +0200
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2021-11-01 14:53:16 +0200
commit20f49c625cd32b95154db138ed7eeebbadd04bf7 (patch)
tree951627b53972a48e77f9c3d11e9de5295e15fa45 /Software/Visual_Studio/Tango.BL/DTO
parentb1049c0822b76939215225a617e143274abe2e8b (diff)
downloadTango-20f49c625cd32b95154db138ed7eeebbadd04bf7.tar.gz
Tango-20f49c625cd32b95154db138ed7eeebbadd04bf7.zip
Color selection and Job sequence package. Redesign list control, move Color Selection View to dialogs, implement save.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/BrushStopDTOBase.cs24
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs8
2 files changed, 32 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/BrushStopDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/BrushStopDTOBase.cs
index 4b687488a..7730131d8 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/BrushStopDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/BrushStopDTOBase.cs
@@ -325,5 +325,29 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// best match r
+ /// </summary>
+ public Nullable<Int32> BestMatchR
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// best match g
+ /// </summary>
+ public Nullable<Int32> BestMatchG
+ {
+ get; set;
+ }
+
+ /// <summary>
+ /// best match b
+ /// </summary>
+ public Nullable<Int32> BestMatchB
+ {
+ get; set;
+ }
+
}
}
diff --git a/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs
index 1364df830..427b19a2d 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs
@@ -37,5 +37,13 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// description
+ /// </summary>
+ public String Description
+ {
+ get; set;
+ }
+
}
}