aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedAssembly.cs
blob: b0178e63ebdd277e05a2c75162cac159a7311fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Newtonsoft.Json;
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 CachedAssembly
    {
        public String Name { get; set; }
        public List<KnownType> KnownTypes { get; set; }

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