using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Integration.ExternalBridge; using Tango.WebRTC; namespace Tango.PPC.Common.RemoteDesktop { public class RemoteDesktopClient { public String Token { get; set; } public ExternalBridgeReceiver Receiver { get; set; } public bool InitialPacketSent { get; set; } public WebRtcClient WebRtcClient { get; set; } public bool IsWebRtcReady { get; set; } } }