mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
12 lines
265 B
C#
12 lines
265 B
C#
using System;
|
|
|
|
namespace MyMediaCollection.Interfaces
|
|
{
|
|
public interface INavigationService
|
|
{
|
|
string CurrentPage { get; }
|
|
void NavigateTo(string page);
|
|
void NavigateTo(string page, object parameter);
|
|
void GoBack();
|
|
}
|
|
} |