mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
15 lines
410 B
C#
15 lines
410 B
C#
using MessagePack;
|
|
|
|
namespace Phantom.Common.Data.Agent;
|
|
|
|
[MessagePackObject]
|
|
public sealed record AgentInfo(
|
|
[property: Key(0)] Guid Guid,
|
|
[property: Key(1)] string Name,
|
|
[property: Key(2)] ushort Version,
|
|
[property: Key(3)] ushort MaxInstances,
|
|
[property: Key(4)] RamAllocationUnits MaxMemory,
|
|
[property: Key(5)] AllowedPorts AllowedServerPorts,
|
|
[property: Key(6)] AllowedPorts AllowedRconPorts
|
|
);
|