Skip to content

Instantly share code, notes, and snippets.

View MattHarrington's full-sized avatar

Matt Harrington MattHarrington

  • San Francisco, CA
View GitHub Profile
public class TodoItem
{
public int Id { get; set; }
[DataMember(Name = "text")]
public string Text { get; set; }
[DataMember(Name = "complete")]
public bool Complete { get; set; }