2020-07-22 20:19:40 -04:00
|
|
|
|
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; }
|
2020-08-01 00:32:04 -04:00
|
|
|
|
public string InReplyToAccount { get; set; }
|
2021-01-22 18:31:30 -05:00
|
|
|
|
public bool IsReply { get; set; }
|
|
|
|
|
public bool IsThread { get; set; }
|
2021-01-29 01:15:10 -05:00
|
|
|
|
public bool IsRetweet { get; set; }
|
|
|
|
|
public string RetweetUrl { get; set; }
|
2022-05-09 20:31:18 -04:00
|
|
|
|
public TwitterUser OriginalAuthor { get; set; }
|
2020-07-22 20:19:40 -04:00
|
|
|
|
}
|
|
|
|
|
}
|