namespace WPFluent.Abstractions; /// /// Defines a service that provides pages for navigation. /// public interface INavigationViewPageProvider { /// /// Retrieves a page of the specified type. /// /// The type of the page to retrieve. /// An instance of the specified page type, or null if the page is not found. public object? GetPage(Type pageType); }