aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/scripts/git_blame.bash
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/scripts/git_blame.bash')
0 files changed, 0 insertions, 0 deletions
<
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<ISolutionItemCommand> Commands { get; set; }
    }
}