namespace OliverBooth.Common.Data.Mastodon;
///
/// Represents a status on Mastodon.
///
public interface IMastodonStatus
{
///
/// Gets the content of the status.
///
/// The content.
string Content { get; }
///
/// Gets the date and time at which this status was posted.
///
/// The post timestamp.
DateTimeOffset CreatedAt { get; }
///
/// Gets the media attachments for this status.
///
/// The media attachments.
IReadOnlyList MediaAttachments { get; }
///
/// Gets the original URI of the status.
///
/// The original URI.
Uri OriginalUri { get; }
}