mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-01-12 17:58:15 +01:00
13 lines
405 B
C#
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
|
|
);
|