using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace uPLibrary.Networking.M2Mqtt.Communication { /// /// MQTT client connected event args /// public class MqttClientConnectedEventArgs : EventArgs { /// /// Connected client /// public MqttClient Client { get; private set; } /// /// Constructor /// /// Connected client public MqttClientConnectedEventArgs(MqttClient client) { this.Client = client; } } }