namespace XFEExtension.NetCore.WinUIHelper.Interface.Services;
///
/// 导航服务
///
public interface INavigationService : IGlobalService
{
///
/// 是否可以向后导航
///
bool CanGoBack { get; }
///
/// 是否可以向前导航
///
bool CanGoForward { get; }
///
/// 导航Frame控件
///
Frame? Frame { get; set; }
///
/// 向后导航
///
void GoBack();
}