15 lines
476 B
C#
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; }
|
|
}
|