WingMan

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 34  →  ?path2? @ 35
/trunk/WingMan/Communication/MqttCommunicationMessageReceivedEventArgs.cs
@@ -0,0 +1,17 @@
using System;
using System.IO;
 
namespace WingMan.Communication
{
public class MqttCommunicationMessageReceivedEventArgs : EventArgs
{
public MqttCommunicationMessageReceivedEventArgs(string topic, Stream payloadStream)
{
Topic = topic;
PayloadStream = payloadStream;
}
 
public string Topic { get; set; }
public Stream PayloadStream { get; set; }
}
}