Created
February 26, 2014 22:53
-
-
Save dustin-graham/9240537 to your computer and use it in GitHub Desktop.
The basic framework of an MvvmCross ViewModel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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