aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-07-20 12:22:23 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-07-20 12:22:23 +0300
commit2741e998e9a039e4f25e621b00483d72891840eb (patch)
treeaf29762e5585c856f9657e9c6997f94b0b646d84 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs
parent2e37232fd2055ff0556c43c6f3f68e5ac427f2f6 (diff)
parentf4fc9795b21c8631451ca16e93e479bcd3872bb5 (diff)
downloadTango-2741e998e9a039e4f25e621b00483d72891840eb.tar.gz
Tango-2741e998e9a039e4f25e621b00483d72891840eb.zip
MERGE Vica changes.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs44
1 files changed, 44 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs
new file mode 100644
index 000000000..e41a6a220
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/MachineModel.cs
@@ -0,0 +1,44 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Core;
+
+namespace Tango.MachineStudio.ThreadExtensions.Models
+{
+ public class MachineModel : ExtendedObject
+ {
+ public String Guid { get; set; }
+
+ public string Name { get; set; }
+
+ protected String _serialnumber;
+
+ public String SerialNumber
+ {
+ get{ return _serialnumber; }
+ set
+ {
+ _serialnumber = value;
+ RaisePropertyChangedAuto();
+ }
+ }
+
+ private bool _hasRMLTest;
+
+ public bool HasRMLTest
+ {
+ get { return _hasRMLTest; }
+ set { _hasRMLTest = value;
+ RaisePropertyChangedAuto();
+ }
+ }
+
+ public MachineModel()
+ {
+ HasRMLTest = false;
+ }
+
+ }
+}