aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Modules/IStudioModuleLoader.cs
blob: d67accbc16e17c01cb0a45d8d1667aa1f55e4b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.Common.Modules
{
    public interface IStudioModuleLoader
    {
        ObservableCollection<IStudioModule> AllModules { get; }

        ObservableCollection<IStudioModule> UserModules { get; }

        void LoadModules();
    }
}