added LastSync to TwitterUser (wip)

This commit is contained in:
Nicolas Constant
2021-01-22 20:18:42 -05:00
parent 8708a529d6
commit 8146b6ea5a
3 changed files with 33 additions and 16 deletions

View File

@ -1,4 +1,6 @@
namespace BirdsiteLive.DAL.Models
using System;
namespace BirdsiteLive.DAL.Models
{
public class SyncTwitterUser
{
@ -7,5 +9,7 @@
public long LastTweetPostedId { get; set; }
public long LastTweetSynchronizedForAllFollowersId { get; set; }
public DateTime LastSync { get; set; }
}
}