2018-08-18 16:55:25 +00:00
|
|
|
|
using ProtoBuf;
|
|
|
|
|
using Quasar.Common.Video;
|
|
|
|
|
|
2018-08-25 16:12:44 +00:00
|
|
|
|
namespace Quasar.Common.Messages
|
2018-08-18 16:55:25 +00:00
|
|
|
|
{
|
|
|
|
|
[ProtoContract]
|
2018-08-25 16:12:44 +00:00
|
|
|
|
public class GetDesktopResponse : IMessage
|
2018-08-18 16:55:25 +00:00
|
|
|
|
{
|
|
|
|
|
[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; }
|
|
|
|
|
}
|
|
|
|
|
}
|