dcdd77b5ae
Introduce ChannelMessage and ChatStreamUpdate types used across the solution for inter-project communication between channels, core, and the web interface.
11 lines
247 B
C#
11 lines
247 B
C#
namespace Luna.Shared;
|
|
|
|
public record ChannelMessage(
|
|
string MessageId,
|
|
string ConversationId,
|
|
string SenderId,
|
|
string SenderName,
|
|
string Content,
|
|
DateTimeOffset Timestamp,
|
|
Dictionary<string, string>? Metadata = null);
|