using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Common.Navigation
{
///
/// Represents the Machine Studio views navigation manager.
///
public interface INavigationManager
{
///
/// Navigates to the specified view.
///
/// The view.
void NavigateTo(NavigationView view);
}
}