aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/src/.exclude
blob: 8c863310d812d520187687decf7d3c884cf45ab0 (plain)
1
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media.Imaging;

namespace Tango.Scripting.Editors.Intellisense
{
    public class FieldCompletionItem : CompletionItem
    {
        public override string Text => Name;
        public override CompletionItemPopupControl PopupControl => new FieldCompletionItemPopup();
        public override BitmapSource Image => GetImage("field.png");

        public String Name { get; set; }
        public String Class { get; set; }
        public String Type { get; set; }
    }
}