Skip to content

Instantly share code, notes, and snippets.

@johnshew
johnshew / FakeService.cs
Last active March 5, 2016 15:06
GISTS for MVVM UWP with CRUD over a Data Service (Published)
using System.Diagnostics;
namespace Data
{
public class Person
{
public String Name { get; set; }
public int Age { get; set; }
}