Code/SentItem.cs

A small data class representing an item that was sent, storing a Location id and a NetworkItem instance. It is an immutable record-like type using init-only properties.

using APLib.Protocol;

namespace APLib;

public sealed class SentItem
{
	public long Location { get; init; }
	
	public NetworkItem Item { get; init; }
}