Files
Walleby/Bitvault/IContainerComponentFactory.cs
T
TheXamlGuy c1b6e595bc Mass rename
2024-05-12 11:02:19 +01:00

9 lines
157 B
C#

using Toolkit.Foundation;
namespace Bitvault
{
public interface IContainerComponentFactory
{
IComponentHost? Create(string name);
}
}