qamp/Qrakhen.Qamp.Core/ISet.cs

9 lines
157 B
C#

namespace Qrakhen.Qamp.Core;
public interface ISet<in TKey, in TValue>
{
TValue this[TKey index] { set; }
void Set(TKey index, TValue value);
}