Zzz – Blame information for rev 1

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