mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
9 lines
169 B
C#
9 lines
169 B
C#
namespace TemplateStudioSampleApp.Contracts.ViewModels;
|
|
|
|
public interface INavigationAware
|
|
{
|
|
void OnNavigatedTo(object parameter);
|
|
|
|
void OnNavigatedFrom();
|
|
}
|