using System.Collections.Generic;
namespace Abp.Application.Navigation
{
///
/// Manages navigation in the application.
///
public interface INavigationManager
{
///
/// All menus defined in the application.
///
IDictionary Menus { get; }
///
/// Gets the main menu of the application.
/// A shortcut of ["MainMenu"].
///
MenuDefinition MainMenu { get; }
}
}