master
cs 10 lines 229 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 namespace WslSettings.Contracts.ViewModels;
4
5 public interface INavigationAware
6 {
7 void OnNavigatedTo(object parameter);
8
9 void OnNavigatedFrom();
10 }