Defines a packet type named SyncPacket that extends APPacket and sets its Command property to "Sync".
namespace APLib.Protocol.Packets; public sealed class SyncPacket : APPacket { public override string Command => "Sync"; }