blob: bab7eef3f6f83ca9ade02a449b688b9d575158d5 (
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 : ExtendedObject
{
public ConsoleSuggestionType Type { get; set; }
public String Name { get; set; }
public String Description { get; set; }
}
}
|