Files
Toolkit2/Toolkit.Foundation/IHandlerProvider.cs
T
2024-06-22 13:03:14 +01:00

6 lines
113 B
C#

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