diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2021-11-01 14:53:16 +0200 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2021-11-01 14:53:16 +0200 |
| commit | 20f49c625cd32b95154db138ed7eeebbadd04bf7 (patch) | |
| tree | 951627b53972a48e77f9c3d11e9de5295e15fa45 /Software/Visual_Studio/Tango.BL/DTO | |
| parent | b1049c0822b76939215225a617e143274abe2e8b (diff) | |
| download | Tango-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.cs | 24 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/MediaMaterialDTOBase.cs | 8 |
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; + } + } } |
