Files
Relay/RelayShared/Services/ChatMessageContent.cs
RuKira f819d7284e Update: Text Channel Stuff
Bugs: Files don't work
Bugs: Video In-Line don't work

Added: idk, everything?
2026-06-03 13:19:21 -04:00

15 lines
476 B
C#

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<string>? Mentions { get; set; }
public string? AttachmentBase64 { get; set; }
public string? AttachmentMimeType { get; set; }
public string? AttachmentFileName { get; set; }
}