This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive.Pipeline/Models/UserWithTweetsToSync.cs
Nicolas Constant d13f60ec3c
init pipeline
2020-07-16 01:19:41 -04:00

12 lines
296 B
C#

using BirdsiteLive.DAL.Models;
using Tweetinvi.Models;
namespace BirdsiteLive.Pipeline.Models
{
public class UserWithTweetsToSync
{
public SyncTwitterUser User { get; set; }
public ITweet[] Tweets { get; set; }
public Follower[] Followers { get; set; }
}
}