namespace RelayShared.Services; public sealed class ChatMessageContent { public string Text { get; set; } = string.Empty; public string? ReplyToId { get; set; } public string? ReplyToSenderUsername { get; set; } public string? ReplyPreview { get; set; } public List? Mentions { get; set; } public string? AttachmentBase64 { get; set; } public string? AttachmentMimeType { get; set; } public string? AttachmentFileName { get; set; } }