wip: finish converting some more projects
This commit is contained in:
15
Habittodo.Model/Storage/TodoistSync.cs
Normal file
15
Habittodo.Model/Storage/TodoistSync.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Microsoft.Azure.Cosmos.Table;
|
||||
|
||||
namespace Habittodo.Model.Storage
|
||||
{
|
||||
public class TodoistSync : TableEntity
|
||||
{
|
||||
public TodoistSync() { }
|
||||
|
||||
public TodoistSync(string userId, string syncToken)
|
||||
{
|
||||
PartitionKey = userId;
|
||||
RowKey = syncToken;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user