Fleshed out the table storage service and started syncing logic
This commit is contained in:
@@ -1,11 +1,18 @@
|
||||
using System;
|
||||
using Microsoft.Azure.Cosmos.Table;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Habitica.Todoist.Integration.Model.Storage
|
||||
{
|
||||
public class TodoistSync
|
||||
public class TodoistSync : TableEntity
|
||||
{
|
||||
public string SyncToken { get; set; }
|
||||
public TodoistSync() { }
|
||||
|
||||
public TodoistSync(string userId, string syncToken)
|
||||
{
|
||||
PartitionKey = userId;
|
||||
RowKey = syncToken;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user