using System; using System.Collections.Generic; using System.Linq; using System.Text; using uPLibrary.Networking.M2Mqtt.Messages; namespace uPLibrary.Networking.M2Mqtt.Internal { /// /// Internal event with a message /// public class MsgInternalEvent : InternalEvent { #region Properties ... /// /// Related message /// public MqttMsgBase Message { get { return this.msg; } set { this.msg = value; } } #endregion // related message protected MqttMsgBase msg; /// /// Constructor /// /// Related message public MsgInternalEvent(MqttMsgBase msg) { this.msg = msg; } } }