1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
-
- using uPLibrary.Networking.M2Mqtt.Messages;
- namespace uPLibrary.Networking.M2Mqtt.Internal
- {
-
-
-
- public class MsgPublishedInternalEvent : MsgInternalEvent
- {
- #region Properties...
-
-
-
- public bool IsPublished
- {
- get { return this.isPublished; }
- internal set { this.isPublished = value; }
- }
- #endregion
-
- bool isPublished;
-
-
-
-
-
- public MsgPublishedInternalEvent(MqttMsgBase msg, bool isPublished)
- : base(msg)
- {
- this.isPublished = isPublished;
- }
- }
- }
|