using System.ComponentModel; namespace TinyChat; /// /// Represents the content of a chat message. /// public interface IChatMessageContent : INotifyPropertyChanged { /// /// Gets the content of the message. /// object? Content { get; } }