using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PMR.Integration; namespace Tango.Integration.ExternalBridge { public class ExternalBridgeClientConnectedEventArgs : EventArgs { public ExternalBridgeLoginRequest Request { get; set; } public String IpAddress { get; set; } public bool Confirmed { get; set; } } }