aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-03-25 14:35:30 +0200
committerShlomo Hecht <shlomo@twine-s.com>2019-03-25 14:35:30 +0200
commitcbb5066b1997bb430e33a89e742fd0b5c440a388 (patch)
tree3b45ad87006780a11f0323a5716cdd0a85d30d30 /Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs
parent0a3f882fe4d388d7387a165349595208cf96a3ae (diff)
parentdf1a05d5586fbce72e9aa2cb05cd64f74d1b98e9 (diff)
downloadTango-cbb5066b1997bb430e33a89e742fd0b5c440a388.tar.gz
Tango-cbb5066b1997bb430e33a89e742fd0b5c440a388.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs')
-rw-r--r--Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs
new file mode 100644
index 000000000..eded27413
--- /dev/null
+++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Solution.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Scripting.IDE
+{
+ public class Solution
+ {
+ public ObservableCollection<IProject> Projects { get; set; }
+
+ public Solution()
+ {
+ Projects = new ObservableCollection<IProject>();
+ }
+ }
+}