Protocol/Packets/SyncPacket.cs

A small packet type used by the app protocol. Defines a SyncPacket class that inherits APPacket and sets the Command to "Sync".

namespace APLib.Protocol.Packets;

public sealed class SyncPacket : APPacket
{
	public override string Command => "Sync";
}