namespace OliverBooth.Data.Mastodon;
public sealed class MediaAttachment
{
///
/// Gets the preview URL of the attachment.
///
/// The preview URL.
public Uri PreviewUrl { get; set; } = null!;
///
/// Gets the type of this attachment.
///
/// The attachment type.
public AttachmentType Type { get; set; } = AttachmentType.Unknown;
///
/// Gets the URL of the attachment.
///
/// The URL.
public Uri Url { get; set; } = null!;
}