Quasar/Quasar.Common/Packets/GetDesktopResponse.cs

22 lines
439 B
C#
Raw Normal View History

2018-08-18 16:55:25 +00:00
using ProtoBuf;
using Quasar.Common.Video;
namespace Quasar.Common.Packets
{
[ProtoContract]
public class GetDesktopResponse : IPacket
{
[ProtoMember(1)]
public byte[] Image { get; set; }
[ProtoMember(2)]
public int Quality { get; set; }
[ProtoMember(3)]
public int Monitor { get; set; }
[ProtoMember(4)]
public Resolution Resolution { get; set; }
}
}