qamp/Qrakhen.Qamp.Core/Collections/Abstractions/IConsumable.cs

6 lines
150 B
C#

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