using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Habittodo.Model { public class ChecklistItem { [JsonProperty("id")] public string Id { get; set; } [JsonProperty("text")] public string Text { get; set; } } }