1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-09-30 23:02:48 +02:00
Files

13 lines
405 B
C#

using System.Collections.Immutable;
using MemoryPack;
using Phantom.Common.Data.Agent;
using Phantom.Common.Data.Java;
namespace Phantom.Common.Messages.Agent.Handshake;
[MemoryPackable(GenerateType.VersionTolerant)]
public sealed partial record AgentRegistration(
[property: MemoryPackOrder(0)] AgentInfo AgentInfo,
[property: MemoryPackOrder(1)] ImmutableArray<TaggedJavaRuntime> JavaRuntimes
);