Fleshed out the table storage service and started syncing logic
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habitica.Todoist.Integration.Model.Habitica.Enums
|
||||
{
|
||||
public enum ScoreAction
|
||||
{
|
||||
Up = 0,
|
||||
Down = 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habitica.Todoist.Integration.Model.Habitica.Enums
|
||||
{
|
||||
public enum TaskType
|
||||
{
|
||||
Habit = 0,
|
||||
Daily = 1,
|
||||
Todo = 2,
|
||||
Reward = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user