removal of old user analysis

This commit is contained in:
Nicolas Constant
2021-09-05 14:00:18 -04:00
parent 71f6d3f3f4
commit b28532b5bd
2 changed files with 1 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
using BirdsiteLive.DAL.Models;
using BirdsiteLive.Twitter.Models;
using Tweetinvi.Models;
namespace BirdsiteLive.Pipeline.Models
{
public class UserWithDataToSync
{
public SyncTwitterUser User { get; set; }
public ExtractedTweet[] Tweets { get; set; }
public Follower[] Followers { get; set; }
}
}