Skip to content

Instantly share code, notes, and snippets.

@DVDPT
Last active August 29, 2015 14:16
Show Gist options
  • Save DVDPT/63b3391f6b88fe02d024 to your computer and use it in GitHub Desktop.
Save DVDPT/63b3391f6b88fe02d024 to your computer and use it in GitHub Desktop.
AdMesh for mobfox nav service
public interface IAppNavigationService
{
void GoToLogin();
void GoToHome();
void GoToReportDetails();
void GoToApplication();
void GoToCustomReport();
void GoToAbout();
ICommand GoToLoginCommand { get; }
ICommand GoToHomeCommand { get; }
ICommand GoToReportDetailsCommand { get; }
ICommand GoToApplicationCommand { get; }
ICommand GoToCustomReportCommand { get; }
ICommand GoToAboutCommand { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment