using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Tango.RemoteDesktop.Network
{
public class RemoteDesktopPacket
{
/// <summary>
/// Gets or sets the bitmap byte array.
/// </summary>
public byte[] Bitmap { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the <see cref="Bitmap"/> is a partial bitmap that needs to be applied over the previous one.
/// </summary>
public bool IsPartial { get; set; }
/// <summary>
/// Gets or sets the region on the previous bitmap that needs to be applied with this packet bitmap.
/// </summary>
public CaptureRegion PartialRegion { get; set; }
/// <summary>
/// Gets or sets the mouse position.
/// </summary>
public Point MousePosition { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the frame includes the remote cursor.
/// </summary>
public bool CursorVisible { get; set; }
}
}