mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
34 lines
847 B
C#
34 lines
847 B
C#
using Remotely.Shared.Enums;
|
|
using Remotely.Shared.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
|
|
namespace Remotely.Shared.Models
|
|
{
|
|
[DataContract]
|
|
public class FrameInfo : IDynamicDto
|
|
{
|
|
[DataMember(Name = "EndOfFrame")]
|
|
public bool EndOfFrame { get; set; }
|
|
|
|
[DataMember(Name = "Height")]
|
|
public int Height { get; set; }
|
|
|
|
[DataMember(Name = "ImageBytes")]
|
|
public byte[] ImageBytes { get; set; }
|
|
|
|
[DataMember(Name = "Left")]
|
|
public int Left { get; set; }
|
|
|
|
[DataMember(Name = "DtoType")]
|
|
public DynamicDtoType DtoType { get; set; }
|
|
|
|
[DataMember(Name = "Top")]
|
|
public int Top { get; set; }
|
|
[DataMember(Name = "Width")]
|
|
public int Width { get; set; }
|
|
}
|
|
}
|