Files
Toolkit2/Toolkit.Foundation/IHandlerProvider.cs
T
2024-05-16 21:41:48 +01:00

8 lines
142 B
C#

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