Remotely/ScreenCast.Core/Models/FrameInfo.cs
2020-01-17 07:47:54 -08:00

28 lines
603 B
C#

using MessagePack;
using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.ScreenCast.Core.Models
{
[MessagePackObject]
public class FrameInfo
{
[Key("EndOfFrame")]
public bool EndOfFrame { get; internal set; }
[Key("Height")]
public int Height { get; set; }
[Key("ImageBytes")]
public byte[] ImageBytes { get; set; }
[Key("Left")]
public int Left { get; set; }
[Key("Top")]
public int Top { get; set; }
[Key("Width")]
public int Width { get; set; }
}
}