encyption wip

This commit is contained in:
TheXamlGuy
2024-04-29 21:42:04 +01:00
parent 7e980dbfce
commit b89f21b3ca
5 changed files with 20 additions and 19 deletions
+4 -3
View File
@@ -4,7 +4,8 @@ namespace Toolkit.Foundation;
public interface IComponentFactory
{
IComponentHost? Create<TComponent>(string name,
ComponentConfiguration configuration, Action<IServiceCollection>? servicesDelegate = null)
where TComponent : IComponent;
IComponentHost? Create<TComponent, TConfiguration>(string name,
TConfiguration configuration, Action<IServiceCollection>? servicesDelegate = null)
where TComponent : IComponent
where TConfiguration : ComponentConfiguration, new();
}