You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
342 B
C#
18 lines
342 B
C#
namespace TinyChat;
|
|
|
|
/// <summary>
|
|
/// Represents a chat message with a sender and content.
|
|
/// </summary>
|
|
public interface IChatMessage
|
|
{
|
|
/// <summary>
|
|
/// Gets the sender of the message.
|
|
/// </summary>
|
|
ISender Sender { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the content of the message.
|
|
/// </summary>
|
|
IChatMessageContent Content { get; }
|
|
}
|