aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs
blob: 4a663bee935da94e85a7c8719b6f6a9f339e453c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Scripting.Editors.Intellisense;

namespace Tango.Scripting.Editors
{
    public class CachedUsing
    {
        public String Namespace { get; set; }
        public List<KnownType> KnownTypes { get; set; }

        public CachedUsing()
        {
            KnownTypes = new List<KnownType>();
        }
    }
}