diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-03-17 09:12:33 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-03-17 09:12:33 +0200 |
| commit | c5e354289baee800f4cf93b6df1836a133c1addf (patch) | |
| tree | ba2af74e90299ae72823b7633c83a542488fcbdf /Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/IScriptProject.cs | |
| parent | c1c1e12fd3f0d89752b42d890ac43678bf9e7d69 (diff) | |
| download | Tango-c5e354289baee800f4cf93b6df1836a133c1addf.tar.gz Tango-c5e354289baee800f4cf93b6df1836a133c1addf.zip | |
Scripting Ide...
Diffstat (limited to 'Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/IScriptProject.cs')
| -rw-r--r-- | Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/IScriptProject.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/IScriptProject.cs b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/IScriptProject.cs new file mode 100644 index 000000000..f68114e8b --- /dev/null +++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/IScriptProject.cs @@ -0,0 +1,20 @@ +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 interface IScriptProject + { + String Name { get; set; } + + String FilePath { get; set; } + + ObservableCollection<ReferenceAssembly> References { get; set; } + + ObservableCollection<IScriptFile> Items { get; set; } + } +} |
