namespace OliverBooth.Data; 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 original URI of the status. /// /// The original URI. Uri OriginalUri { get; } }