16 lines
307 B
C#
16 lines
307 B
C#
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; }
|
|
}
|
|
}
|