RaspberryIO_26/Swan/Messaging/IMessageHubMessage.cs

16 lines
352 B
C#
Raw Permalink Normal View History

2019-12-08 21:23:54 +01:00
using System;
namespace Swan.Messaging {
/// <summary>
/// A Message to be published/delivered by Messenger.
/// </summary>
public interface IMessageHubMessage {
2019-12-04 18:57:18 +01:00
/// <summary>
2019-12-08 21:23:54 +01:00
/// The sender of the message, or null if not supported by the message implementation.
2019-12-04 18:57:18 +01:00
/// </summary>
2019-12-08 21:23:54 +01:00
Object Sender {
get;
}
}
2019-12-04 18:57:18 +01:00
}