mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
Add starter code for chapter 8
No modifications for Complete folder yet.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace MyMediaCollection.Interfaces
|
||||
{
|
||||
public interface INavigationService
|
||||
{
|
||||
string CurrentPage { get; }
|
||||
void NavigateTo(string page);
|
||||
void NavigateTo(string page, object parameter);
|
||||
void GoBack();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user