SentItem.cs

Plain data container type in namespace APLib. Stores a long Location and a NetworkItem Item, both init-only properties for immutability after construction.

using APLib.Protocol;

namespace APLib;

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