using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Input; using System.Windows.Media.Imaging; namespace Tango.Scripting.IDE { public interface ISolutionItemCommand : ICommand { String Name { get; set; } BitmapSource Image { get; set; } ObservableCollection Commands { get; set; } } }