RaspberryIO_26/Swan/Messaging/IMessageHubMessage.cs
2019-12-04 18:57:18 +01:00

14 lines
350 B
C#

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