Skip to content

Instantly share code, notes, and snippets.

@vermegi
Created December 15, 2013 16:22
public interface INavigate
{
void NavigateTo<TViewModel>() where TViewModel : class;
void NavigateTo<TViewModel, TRequest>(TRequest request) where TViewModel : class;
void GoBack();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment