aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Console/ConsoleSuggestion.cs
blob: a557584ce57af05dc1e6dd723c90ce4b0f7c11d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media.Imaging;
using Tango.Core;

namespace Tango.Console
{
    public class ConsoleSuggestion
    {
        public ConsoleSuggestionType Type { get; set; }
        public String Name { get; set; }
        public String Description { get; set; }
    }
}