Protocol/Packets/LocationChecksPacket.cs

A simple packet type used by the protocol. It represents a LocationChecks command and carries an array of location IDs as long integers.

using System.Text.Json.Serialization;

namespace APLib.Protocol.Packets;

public sealed class LocationChecksPacket : APPacket
{
	public override string Command => "LocationChecks";
	
	[JsonPropertyName( "locations" )]
	public long[] Locations { get; set; }
}