qamp/Qrakhen.Qamp.Core/IGet.cs

7 lines
108 B
C#

namespace Qrakhen.Qamp.Core;
public interface IGet<in TKey, out TValue>
{
TValue Get(TKey index);
}