aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-12-12 19:25:15 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-12-12 19:25:15 +0200
commit639cae64dd2fb5b19082a0486608c5b3066d4e78 (patch)
tree8bdf37dfff3cdfac4df2acd22d567b0c19e4078b /Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs
parent255d660e713454f01bad2c4bcc6e5051894745e8 (diff)
downloadTango-639cae64dd2fb5b19082a0486608c5b3066d4e78.tar.gz
Tango-639cae64dd2fb5b19082a0486608c5b3066d4e78.zip
Working on machine studio.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs b/Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs
deleted file mode 100644
index c12c97966..000000000
--- a/Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/EntityViewModel.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.Core.Commands;
-using Tango.SharedUI;
-
-namespace Tango.MachineStudio.UI
-{
- public class EntityViewModel<T> : ViewModel
- {
- private T _entity;
-
- public T Entity
- {
- get { return _entity; }
- set { _entity = value; RaisePropertyChanged(nameof(Entity)); }
- }
-
- public EntityViewModel() : base()
- {
-
- }
-
- public EntityViewModel(T entity) : this()
- {
- Entity = entity;
- }
- }
-}