init dataAccessLayers

This commit is contained in:
Nicolas Constant
2020-07-05 20:22:34 -04:00
parent 0249df0b9f
commit b34385fd22
19 changed files with 461 additions and 3 deletions

View File

@ -0,0 +1,11 @@
namespace BirdsiteLive.DAL.Models
{
public class SyncTwitterUser
{
public int Id { get; set; }
public string Acct { get; set; }
public long LastTweetPostedId { get; set; }
public long LastTweetSynchronizedForAllFollowersId { get; set; }
}
}