Files
Toolkit2/Toolkit.Foundation/IHandlerProvider.cs
T
2024-05-14 22:49:16 +01:00

8 lines
143 B
C#

namespace Toolkit.Foundation
{
public interface IHandlerProvider
{
IEnumerable<object?> Get(Type type, object key);
}
}