Fixed more edge cases

This commit is contained in:
TheXamlGuy
2024-05-16 21:41:48 +01:00
parent 8c0436644a
commit 7f3c4c53cc
16 changed files with 93 additions and 33 deletions
+5 -6
View File
@@ -1,9 +1,8 @@
namespace Toolkit.Foundation
namespace Toolkit.Foundation;
public interface IHandlerProvider
{
public interface IHandlerProvider
{
IEnumerable<object?> Get(Type type,
object? key = null);
}
IEnumerable<object?> Get(Type type,
object? key = null);
}