namespace Unosquare.Swan.Components
{
///
/// A Message to be published/delivered by Messenger.
///
public interface IMessageHubMessage
{
///
/// The sender of the message, or null if not supported by the message implementation.
///
object Sender { get; }
}
}