diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-08-31 12:02:47 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-08-31 12:02:47 +0300 |
| commit | 13e76d80896d61c476ff755a892c795ed4af6de6 (patch) | |
| tree | 6f03b49624fe2c52ae2a129e1df086c232aa9d7d /Software/Visual_Studio/Tango.BL/DTO | |
| parent | 6e4ddaeef2667e071f7f079876e98bd77ed233f3 (diff) | |
| download | Tango-13e76d80896d61c476ff755a892c795ed4af6de6.tar.gz Tango-13e76d80896d61c476ff755a892c795ed4af6de6.zip | |
MS. RML Extension. Added Application Type,
Yarn Type and Tension Error to Test results table. Changes in database.
Related Work Items: #6347
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/RmlExtensionTestResultDTOBase.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/RmlExtensionTestResultDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/RmlExtensionTestResultDTOBase.cs index d48a36b22..0f2fa1675 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/RmlExtensionTestResultDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/RmlExtensionTestResultDTOBase.cs @@ -277,5 +277,29 @@ namespace Tango.BL.DTO get; set; } + /// <summary> + /// btsr application type guid + /// </summary> + public String BtsrApplicationTypeGuid + { + get; set; + } + + /// <summary> + /// btsr yarn type guid + /// </summary> + public String BtsrYarnTypeGuid + { + get; set; + } + + /// <summary> + /// btsr tension error + /// </summary> + public Double BtsrTensionError + { + get; set; + } + } } |
