Fleshed out the table storage service and started syncing logic
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habitica.Todoist.Integration.Model.Habitica.Responses
|
||||
{
|
||||
public class HabiticaReponse<T>
|
||||
{
|
||||
[JsonProperty("success")]
|
||||
public bool Success { get; set; }
|
||||
[JsonProperty("data")]
|
||||
public T Data { get; set; }
|
||||
[JsonProperty("notifications")]
|
||||
public object Notifications { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user