wip: finish converting some more projects

This commit is contained in:
2021-07-20 14:54:11 -04:00
parent 1b32317e09
commit da7f2f2709
38 changed files with 167 additions and 819 deletions

View File

@@ -0,0 +1,22 @@
using Habittodo.Model.Storage.Enums;
using Microsoft.Azure.Cosmos.Table;
namespace Habittodo.Model.Storage
{
/* 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; }
}
}