Skip to content

Instantly share code, notes, and snippets.

@dustin-graham
Created February 26, 2014 22:53
Show Gist options
  • Save dustin-graham/9240537 to your computer and use it in GitHub Desktop.
Save dustin-graham/9240537 to your computer and use it in GitHub Desktop.
The basic framework of an MvvmCross ViewModel
using System;
using Cirrious.MvvmCross.ViewModels;
namespace MyRep
{
public class AddressQueryViewModel : MvxViewModel
{
public AddressQueryViewModel ()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment