qamp/Qrakhen.Qamp.Core/ISeekable.cs

7 lines
140 B
C#

namespace Qrakhen.Qamp.Core;
public interface ISeekable<TKey, out TValue>
{
TKey Position { get; }
TValue Seek(TKey position);
}