mirror of
https://github.com/NicolasConstant/BirdsiteLive
synced 2025-06-05 21:49:16 +02:00
extract only needed info from tweets
This commit is contained in:
14
src/BirdsiteLive.Twitter/Models/ExtractedTweet.cs
Normal file
14
src/BirdsiteLive.Twitter/Models/ExtractedTweet.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user