1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-11-21 20:42:46 +01:00
TweetDuck/lib/TweetLib.Browser/Contexts/Tweet.cs

25 lines
673 B
C#

namespace TweetLib.Browser.Contexts {
public readonly struct Tweet {
public string Url { get; }
public string? QuoteUrl { get; }
public string? Author { get; }
public string? QuoteAuthor { get; }
public string[] ImageUrls { get; }
public string ColumnId { get; }
public string ChirpId { get; }
public string? MediaAuthor => QuoteAuthor ?? Author;
public Tweet(string url, string? quoteUrl, string? author, string? quoteAuthor, string[] imageUrls, string columnId, string chirpId) {
Url = url;
QuoteUrl = quoteUrl;
Author = author;
QuoteAuthor = quoteAuthor;
ImageUrls = imageUrls;
ColumnId = columnId;
ChirpId = chirpId;
}
}
}