mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
15 lines
405 B
C#
15 lines
405 B
C#
using MessagePack;
|
|
|
|
namespace Phantom.Common.Messages.ToAgent;
|
|
|
|
[MessagePackObject]
|
|
public sealed record SendCommandToInstanceMessage(
|
|
[property: Key(0)] uint SequenceId,
|
|
[property: Key(1)] Guid InstanceGuid,
|
|
[property: Key(2)] string Command
|
|
) : IMessageToAgent, IMessageWithReply {
|
|
public Task Accept(IMessageToAgentListener listener) {
|
|
return listener.HandleSendCommandToInstance(this);
|
|
}
|
|
}
|