diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-10-19 17:23:24 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-10-19 17:25:22 +0300 |
| commit | b6745cf00a2aedae8da24a2477d1000f30e7e1d3 (patch) | |
| tree | 0035b1984a542846f186fbc613e9925dc1d168d0 /Software/Visual_Studio/Tango.BL/DTO | |
| parent | 3fc440bd00595d660299de7da0fce21945014df4 (diff) | |
| download | Tango-b6745cf00a2aedae8da24a2477d1000f30e7e1d3.tar.gz Tango-b6745cf00a2aedae8da24a2477d1000f30e7e1d3.zip | |
Added Number of Spools to Job table.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/JobDTOBase.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/JobDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/JobDTOBase.cs index c5e13a569..feb789ffe 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/JobDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/JobDTOBase.cs @@ -309,5 +309,13 @@ namespace Tango.BL.DTO get; set; } + /// <summary> + /// number of spools + /// </summary> + public Int32 NumberOfSpools + { + get; set; + } + } } |
