initial project commit

This commit is contained in:
2020-03-18 18:21:15 -04:00
commit b45b2d80b0
17 changed files with 872 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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; }
}
}