extract only needed info from tweets

This commit is contained in:
Nicolas Constant
2020-07-22 20:19:40 -04:00
parent 1724d3a902
commit fffc9af534
7 changed files with 140 additions and 69 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Net.Sockets;
namespace BirdsiteLive.Twitter.Models
{
public class ExtractedTweet
{
public long Id { get; set; }
public long? InReplyToStatusId { get; set; }
public string MessageContent { get; set; }
public ExtractedMedia[] Media { get; set; }
public DateTime CreatedAt { get; set; }
}
}