blob: ef413f69a8a3237d9d2c6133b6b8a2cc9586f596 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;
using Tango.Scripting.IDE.Notifications;
using Tango.SharedUI;
namespace Tango.Scripting.IDE
{
public class IDEViewModel : ViewModel
{
public INotificationManager NotificationManager { get; set; }
public IDEViewModel()
{
TangoIOC.Default.Inject(this);
}
}
}
|