seperated todoist and habitica api calls into services
This commit is contained in:
15
Habitica.Todoist.Integration.Model/Storage/TodoChange.cs
Normal file
15
Habitica.Todoist.Integration.Model/Storage/TodoChange.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habitica.Todoist.Integration.Model.Storage
|
||||
{
|
||||
public class TodoChange
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public TodoApp Application { get; set; }
|
||||
public TodoAction Action { get; set; }
|
||||
public bool Applied { get; set; }
|
||||
public string JsonTodo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user