qamp/Qrakhen.Qamp.Core/IConsumable.cs

6 lines
125 B
C#

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