using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Common.Navigation
{
/// <summary>
/// Represents the available views to navigate to using the <see cref="INavigationManager"/>.
/// </summary>
public enum NavigationView
{
LoadingView,
MainView,
LoginView,
ShutdownView,
UpdateView,
}
}