Files
Toolkit2/Toolkit.Foundation/IHandlerProvider.cs
T

9 lines
164 B
C#

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