aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs
diff options
context:
space:
mode:
authorRoy <roy.mail.net@gmail.com>2018-02-20 00:03:51 +0200
committerRoy <roy.mail.net@gmail.com>2018-02-20 00:03:51 +0200
commit1a573aaa346ec4b8bd58a0e35ab9df571a09b855 (patch)
tree18055974ba06b0b1282955a2160e1fad5dd21bcc /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs
parent160ec4042539e69a7494bcde5c893c6dffcbf1b6 (diff)
downloadTango-1a573aaa346ec4b8bd58a0e35ab9df571a09b855.tar.gz
Tango-1a573aaa346ec4b8bd58a0e35ab9df571a09b855.zip
Added logs to developer module!
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs47
1 files changed, 0 insertions, 47 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs
deleted file mode 100644
index cc4170827..000000000
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/IOVM.cs
+++ /dev/null
@@ -1,47 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.Core;
-using Tango.Integration.Observables;
-
-namespace Tango.MachineStudio.Developer.ViewModels
-{
- public class IOVM : ExtendedObject
- {
- private TechMonitor _io;
- public TechMonitor IO
- {
- get { return _io; }
- set { _io = value; RaisePropertyChangedAuto(); }
- }
-
- private String _name;
- public String Name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private bool _index;
- public bool Index
- {
- get { return _index; }
- set { _index = value; }
- }
-
- private double _value;
- public double Value
- {
- get { return _value; }
- set { _value = value; RaisePropertyChanged(nameof(Value)); }
- }
-
- public IOVM(TechMonitor io, String name)
- {
- IO = io;
- Name = name;
- }
- }
-}