INavigationProviderContext.cs 330 B

12345678910111213
  1. namespace Abp.Application.Navigation
  2. {
  3. /// <summary>
  4. /// Provides infrastructure to set navigation.
  5. /// </summary>
  6. public interface INavigationProviderContext
  7. {
  8. /// <summary>
  9. /// Gets a reference to the menu manager.
  10. /// </summary>
  11. INavigationManager Manager { get; }
  12. }
  13. }