using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.RemoteDesktop.Network { /// /// Represents a continuous message for updating about remote desktop changes. /// public class StartRemoteDesktopSessionResponse { /// /// Gets or sets the remote desktop packet. /// public RemoteDesktopPacket Packet { get; set; } /// /// Capture frame rate reported by the host. /// Will be sent only on the first response! /// public int FrameRate { get; set; } } }