mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
512 B
C#
20 lines
512 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remotely.Desktop.Core.Models
|
|
{
|
|
public class CaptureFrame
|
|
{
|
|
public byte[] EncodedImageBytes { get; init; }
|
|
public Guid Id { get; } = Guid.NewGuid();
|
|
public int Top { get; init; }
|
|
public int Left { get; init; }
|
|
public int Height { get; init; }
|
|
public int Width { get; init; }
|
|
public long Sequence { get; init; }
|
|
}
|
|
}
|