aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteDesktop/RemoteDesktopClient.cs
blob: f0f0a87de5cff5df3b7497974e2f5f3ee6272076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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; }
    }

}