namespace TinyChat; /// /// Provides data for the event when a message was sent /// /// /// Initializes a new instance of the class. /// /// The sender of the message. /// The message content being sent. public class MessageSentEventArgs(ISender sender, IChatMessageContent content) : EventArgs { /// /// Gets the message content being sent. /// public IChatMessageContent Content { get; } = content; /// /// Gets the sender of the message. /// public ISender Sender { get; } = sender; }