Files
habittodo/Habitica.Todoist.Integration.Model/Todoist/SyncResponse.cs
2020-03-18 18:21:15 -04:00

14 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Habitica.Todoist.Integration.Model.Todoist
{
public class SyncResponse
{
public string Sync_token { get; set; }
public bool Full_sync { get; set; }
public List<Item> Items { get; set; }
}
}