Zzz – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using Zzz.Action;
3  
4 namespace Zzz.Clients
5 {
6 public class MqttActionReceivedEventArgs : EventArgs
7 {
8 #region Public Enums, Properties and Fields
9  
10 public ZzzAction Action { get; }
11  
12 #endregion
13  
14 #region Constructors, Destructors and Finalizers
15  
16 public MqttActionReceivedEventArgs(ZzzAction action)
17 {
18 Action = action;
19 }
20  
21 #endregion
22 }
23 }