aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SharedUI/ViewModel.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-12-07 15:34:42 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-12-07 15:34:42 +0200
commit4cf1e800a5743d1194281703a4bcd6df0a910e8f (patch)
treeea790b84cf9021c5d1d3cb74018107ee86bd457a /Software/Visual_Studio/Tango.SharedUI/ViewModel.cs
parentb18d75447928658826f05a7f1ab0279ac7cb671a (diff)
downloadTango-4cf1e800a5743d1194281703a4bcd6df0a910e8f.tar.gz
Tango-4cf1e800a5743d1194281703a4bcd6df0a910e8f.zip
Added Avalon editor as SideChain.
Implemented scripting control in SharedUI..
Diffstat (limited to 'Software/Visual_Studio/Tango.SharedUI/ViewModel.cs')
-rw-r--r--Software/Visual_Studio/Tango.SharedUI/ViewModel.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/ViewModel.cs b/Software/Visual_Studio/Tango.SharedUI/ViewModel.cs
index d0c08fb3a..dc8eeff8c 100644
--- a/Software/Visual_Studio/Tango.SharedUI/ViewModel.cs
+++ b/Software/Visual_Studio/Tango.SharedUI/ViewModel.cs
@@ -3,10 +3,16 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Tango.Core;
namespace Tango.SharedUI
{
- public abstract class ViewModel<T> where T : IView
+ public abstract class ViewModel : ExtendedObject
+ {
+
+ }
+
+ public abstract class ViewModel<T> : ViewModel where T : IView
{
public T View { get; set; }