mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
28 lines
603 B
C#
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; }
|
|
}
|
|
}
|