Make vault storages work

This commit is contained in:
TheXamlGuy
2024-04-28 16:04:05 +01:00
parent bc55c4649b
commit 7e980dbfce
6 changed files with 168 additions and 65 deletions
+10
View File
@@ -0,0 +1,10 @@
using Microsoft.Extensions.DependencyInjection;
namespace Toolkit.Foundation;
public interface IComponentFactory
{
IComponentHost? Create<TComponent>(string name,
ComponentConfiguration configuration, Action<IServiceCollection>? servicesDelegate = null)
where TComponent : IComponent;
}