WingMan – Blame information for rev 35

Subversion Repositories:
Rev:
Rev Author Line No. Line
35 office 1 using System;
2 using System.IO;
3  
4 namespace WingMan.Communication
5 {
6 public class MqttCommunicationMessageReceivedEventArgs : EventArgs
7 {
8 public MqttCommunicationMessageReceivedEventArgs(string topic, Stream payloadStream)
9 {
10 Topic = topic;
11 PayloadStream = payloadStream;
12 }
13  
14 public string Topic { get; set; }
15 public Stream PayloadStream { get; set; }
16 }
17 }