diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-11-13 03:46:12 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-11-13 03:46:12 +0200 |
| commit | d38bf750367c6d6cdda3a6a3efbdf3552aa85358 (patch) | |
| tree | 000818a2a1e49d1e3decc630a94cf183bbaf2128 /Software/Visual_Studio/Tango.BL/DTO | |
| parent | 8431040bf909ba65d5ce242b5fd2cc91005ba679 (diff) | |
| download | Tango-d38bf750367c6d6cdda3a6a3efbdf3552aa85358.tar.gz Tango-d38bf750367c6d6cdda3a6a3efbdf3552aa85358.zip | |
FSE Stats Module.
Extended job run structure.
CSV export.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs index 7c5ba4626..becb51888 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs @@ -270,6 +270,38 @@ namespace Tango.BL.DTO } /// <summary> + /// application version + /// </summary> + public String ApplicationVersion + { + get; set; + } + + /// <summary> + /// firmware version + /// </summary> + public String FirmwareVersion + { + get; set; + } + + /// <summary> + /// ce version + /// </summary> + public String CeVersion + { + get; set; + } + + /// <summary> + /// process parameters table guid + /// </summary> + public String ProcessParametersTableGuid + { + get; set; + } + + /// <summary> /// is synchronized /// </summary> public Boolean IsSynchronized |
