aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-05-05 19:50:31 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-05-05 19:50:31 +0300
commit8594795f820e03b988c37b9e5d9771670889074d (patch)
treeb554463c0f91161e172a4384cf2b99c91ef7e6bc /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models
parent6e7818382734e9ef0b65552bb026c6b0a4f69e4b (diff)
downloadTango-8594795f820e03b988c37b9e5d9771670889074d.tar.gz
Tango-8594795f820e03b988c37b9e5d9771670889074d.zip
Machine Manager Improvements.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models/MachineModel.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models/MachineModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models/MachineModel.cs
index 3923ae981..4b7e94b1e 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models/MachineModel.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/Models/MachineModel.cs
@@ -31,6 +31,20 @@ namespace Tango.MachineStudio.MachineManager.Models
public String HardwareVersionGuid { get; set; }
+ private String _applicationVersion;
+ public String ApplicationVersion
+ {
+ get { return _applicationVersion; }
+ set { _applicationVersion = value; RaisePropertyChangedAuto(); }
+ }
+
+ private String _firmwareVersion;
+ public String FirmwareVersion
+ {
+ get { return _firmwareVersion; }
+ set { _firmwareVersion = value; RaisePropertyChangedAuto(); }
+ }
+
private String _hardwareVersionName;
public String HardwareVersionName
{