WingMan – Blame information for rev 32

Subversion Repositories:
Rev:
Rev Author Line No. Line
10 office 1 using System;
2 using MQTTnet;
3  
4 namespace WingMan.Communication
5 {
6 public class MqttAuthenticationFailureEventArgs : EventArgs
7 {
8 public MqttAuthenticationFailureEventArgs(MqttApplicationMessageReceivedEventArgs e, Exception ex)
9 {
10 Args = e;
11 Exception = ex;
12 }
13  
14 public MqttApplicationMessageReceivedEventArgs Args { get; set; }
15 public Exception Exception { get; set; }
16 }
32 office 17 }