Files
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

26 lines
524 B
C#

using MessagePack;
using Pulsar.Common.Enums;
using Pulsar.Common.Messages.Other;
namespace Pulsar.Common.Messages.Monitoring.RemoteDesktop
{
[MessagePackObject]
public class DoMouseEvent : IMessage
{
[Key(1)]
public MouseAction Action { get; set; }
[Key(2)]
public bool IsMouseDown { get; set; }
[Key(3)]
public int X { get; set; }
[Key(4)]
public int Y { get; set; }
[Key(5)]
public int MonitorIndex { get; set; }
}
}