using Abp.Dependency; namespace Abp.Application.Navigation { /// /// This interface should be implemented by classes which change /// navigation of the application. /// public abstract class NavigationProvider : ITransientDependency { /// /// Used to set navigation. /// /// Navigation context public abstract void SetNavigation(INavigationProviderContext context); } }