RaspberryIO/Unosquare.Swan/Components/IMessageHubMessage.cs
2019-12-03 18:44:25 +01:00

16 lines
363 B
C#

using System;
namespace Unosquare.Swan.Components {
/// <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;
}
}
}