RaspberryIO/Unosquare.Swan/Components/IMessageHubMessage.cs

16 lines
363 B
C#
Raw Permalink Normal View History

2019-12-03 18:44:25 +01:00
using System;
namespace Unosquare.Swan.Components {
/// <summary>
/// A Message to be published/delivered by Messenger.
/// </summary>
public interface IMessageHubMessage {
2019-02-17 14:08:57 +01:00
/// <summary>
2019-12-03 18:44:25 +01:00
/// The sender of the message, or null if not supported by the message implementation.
2019-02-17 14:08:57 +01:00
/// </summary>
2019-12-03 18:44:25 +01:00
Object Sender {
get;
}
}
2019-02-17 14:08:57 +01:00
}