namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface IConsumable<in T>
{
void Consume(T expected, string? message = null);
}