aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.RemoteDesktop/Network/StartRemoteDesktopSessionResponse.cs
blob: 2c1d0e63525ae8d8003bd706bb34f713e5e16d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.RemoteDesktop.Network
{
    /// <summary>
    /// Represents a continuous message for updating about remote desktop changes.
    /// </summary>
    public class StartRemoteDesktopSessionResponse
    {
        /// <summary>
        /// Gets or sets the remote desktop packet.
        /// </summary>
        public RemoteDesktopPacket Packet { get; set; }

        /// <summary>
        /// Capture frame rate reported by the host.
        /// Will be sent only on the first response!
        /// </summary>
        public int FrameRate { get; set; }
    }
}