added serialization back to Item class

This commit is contained in:
Ryan CrawCour 2014-09-23 15:39:32 -07:00
Родитель b4199a81b2
Коммит 09069263d1
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -7,8 +7,11 @@
{
[JsonProperty(PropertyName="id")]
public string Id { get; set; }
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
[JsonProperty(PropertyName = "isComplete")]
public bool Completed { get; set; }
}
}