mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-01-12 17:58:15 +01:00
9 lines
212 B
C#
9 lines
212 B
C#
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Web.Agent;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record AgentConfiguration(
|
|
[property: MemoryPackOrder(0)] string AgentName
|
|
);
|