mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
16 lines
599 B
C#
16 lines
599 B
C#
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Agent;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record AgentInfo(
|
|
[property: MemoryPackOrder(0)] Guid AgentGuid,
|
|
[property: MemoryPackOrder(1)] string AgentName,
|
|
[property: MemoryPackOrder(2)] ushort ProtocolVersion,
|
|
[property: MemoryPackOrder(3)] string BuildVersion,
|
|
[property: MemoryPackOrder(4)] ushort MaxInstances,
|
|
[property: MemoryPackOrder(5)] RamAllocationUnits MaxMemory,
|
|
[property: MemoryPackOrder(6)] AllowedPorts AllowedServerPorts,
|
|
[property: MemoryPackOrder(7)] AllowedPorts AllowedRconPorts
|
|
);
|