mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2026-02-02 09:08:26 +00:00
14 lines
347 B
C#
14 lines
347 B
C#
using ZonyLrcTools.Desktop.ViewModels;
|
|
|
|
namespace ZonyLrcTools.Desktop.Services;
|
|
|
|
public interface INavigationService
|
|
{
|
|
ViewModelBase? CurrentViewModel { get; }
|
|
event EventHandler<ViewModelBase>? NavigationChanged;
|
|
|
|
TViewModel NavigateTo<TViewModel>() where TViewModel : ViewModelBase;
|
|
void GoBack();
|
|
bool CanGoBack { get; }
|
|
}
|