Allow validation to be looked up by name

This commit is contained in:
TheXamlGuy
2024-09-27 19:55:45 +01:00
parent 0871c42438
commit bd577975b2
4 changed files with 70 additions and 3 deletions
@@ -0,0 +1,10 @@
namespace Toolkit.Foundation
{
public interface IReadOnlyIndexDictionary<TKey, TValue> :
IReadOnlyDictionary<TKey, TValue>
where TKey : notnull
{
KeyValuePair<TKey, TValue> this[int index] { get; }
}
}