aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-04-22 10:53:18 +0300
committerShlomo Hecht <shlomo@twine-s.com>2020-04-22 10:53:18 +0300
commitfe332e7910fccc09a8fc6ccf1f617ff00e7d7568 (patch)
tree9eef1aaf1311275a8ef7de2e1bba330f8b663354 /Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs
parent1336b996270529c97006c1563c3986a95c070607 (diff)
parent34d7201f46c07a6311fcaa9df329ec22c5ebdb49 (diff)
downloadTango-fe332e7910fccc09a8fc6ccf1f617ff00e7d7568.tar.gz
Tango-fe332e7910fccc09a8fc6ccf1f617ff00e7d7568.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs')
-rw-r--r--Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs
new file mode 100644
index 000000000..4a663bee9
--- /dev/null
+++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CachedUsing.cs
@@ -0,0 +1,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>();
+ }
+ }
+}