aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/packages.config
blob: 8b579e95abfc1f51656e03b5796789f8e2e97b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.SharedUI;

namespace Tango.MachineStudio.MachineDesigner.Contracts
{
    public enum MachineDesignerNavigationView
    {
        MachinesView,
        MachineDetailsView,
        ConfigurationView,
    }

    public interface IMainView : IView
    {
        void NavigateTo(MachineDesignerNavigationView view);
    }
}