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,8 @@
namespace BirdsiteLive.Twitter.Models
{
public class ExtractedMedia
{
public string MediaType { get; set; }
public string Url { get; set; }
}
}