blob: f68114e8b0ad3788d677adf4f4935aee9a146a12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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; }
}
}
|