Remotely/Desktop.Core/Models/CaptureFrame.cs
Jared Goodwin ec2ae45e88 Merged PR 9: Auto-quality tweaks.
Auto-quality updates.
2021-08-07 17:53:14 +00:00

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; }
}
}