2026-08-27 11:22:16 -06:00
|
|
|
using ProtoBuf;
|
|
|
|
|
|
|
|
|
|
namespace Quasar.Common.Messages
|
|
|
|
|
{
|
|
|
|
|
[ProtoContract]
|
|
|
|
|
public class GetDesktop : IMessage
|
|
|
|
|
{
|
|
|
|
|
[ProtoMember(1)]
|
|
|
|
|
public bool CreateNew { get; set; }
|
|
|
|
|
|
|
|
|
|
[ProtoMember(2)]
|
|
|
|
|
public int Quality { get; set; }
|
|
|
|
|
|
|
|
|
|
[ProtoMember(3)]
|
|
|
|
|
public int DisplayIndex { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|