feat!: convert projects to .net 5 wip
This commit is contained in:
25
Habittodo.Model/TodoChange.cs
Normal file
25
Habittodo.Model/TodoChange.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Habitica.Todoist.Integration.Model.Storage.Enum;
|
||||
using Microsoft.Azure.Cosmos.Table;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habittodo.Model
|
||||
{
|
||||
/* TODO: Rework structure */
|
||||
public class TodoChange : TableEntity
|
||||
{
|
||||
public TodoChange() { }
|
||||
|
||||
public TodoChange(string userId, string todoId)
|
||||
{
|
||||
PartitionKey = userId;
|
||||
RowKey = todoId;
|
||||
}
|
||||
|
||||
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