9 lines
155 B
C#
9 lines
155 B
C#
namespace RustTools.Contracts.ViewModels;
|
|
|
|
public interface INavigationAware
|
|
{
|
|
void OnNavigatedTo(object parameter);
|
|
|
|
void OnNavigatedFrom();
|
|
}
|