Skip to content

Instantly share code, notes, and snippets.

@bogdanbujdea
Created January 28, 2014 22:40
Show Gist options
  • Select an option

  • Save bogdanbujdea/8678139 to your computer and use it in GitHub Desktop.

Select an option

Save bogdanbujdea/8678139 to your computer and use it in GitHub Desktop.
Simple ViewModel for Windows Phone 8
namespace BudgetPlanner.WP8.ViewModels
{
public class MainViewModel
{
public MainViewModel()
{
PageName = "It worked!";
}
public string PageName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment