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 KnownTypes { get; set; } public CachedAssembly() { KnownTypes = new List(); } } }