finished creating second level todos in todoist as checklists in habitica
This commit is contained in:
@@ -9,13 +9,15 @@ namespace Habitica.Todoist.Integration.Model.Storage
|
||||
{
|
||||
public HabitTodoLink() { }
|
||||
|
||||
public HabitTodoLink(string userId, string habiticaId, string todoistId)
|
||||
public HabitTodoLink(string userId, string habiticaId, string todoistId, string habiticaParentId = null)
|
||||
{
|
||||
PartitionKey = userId;
|
||||
RowKey = habiticaId;
|
||||
HabiticaParentId = habiticaParentId;
|
||||
TodoistId = todoistId;
|
||||
}
|
||||
|
||||
public string HabiticaParentId { get; set; }
|
||||
public string TodoistId { get; set; }
|
||||
|
||||
public TodoHabitLink Reverse()
|
||||
|
||||
Reference in New Issue
Block a user