aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2022-02-22 14:41:25 +0200
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2022-02-22 14:41:25 +0200
commit28fa1ab91b3fb7970d9968c5cb1d018c2b44fd69 (patch)
tree040ebb961e0e991436571f11d8a189c92326e4b3 /Software/Visual_Studio/Tango.BL/DTO
parent3681ab681f02bbb7cda89de4044fd69bc9d61ab8 (diff)
downloadTango-28fa1ab91b3fb7970d9968c5cb1d018c2b44fd69.tar.gz
Tango-28fa1ab91b3fb7970d9968c5cb1d018c2b44fd69.zip
Implement grouping of segments. Changes in GUI and database. Not in Dying process.
Related Work Items: #4558
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/SegmentsGroupDTOBase.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/SegmentsGroupDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/SegmentsGroupDTOBase.cs
index adbf8a2a0..3b98f3042 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/SegmentsGroupDTOBase.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/SegmentsGroupDTOBase.cs
@@ -22,9 +22,9 @@ namespace Tango.BL.DTO
{
/// <summary>
- /// group index
+ /// segment index
/// </summary>
- public Int32 GroupIndex
+ public Int32 SegmentIndex
{
get; set;
}
@@ -37,5 +37,13 @@ namespace Tango.BL.DTO
get; set;
}
+ /// <summary>
+ /// job guid
+ /// </summary>
+ public String JobGuid
+ {
+ get; set;
+ }
+
}
}