Enabled ability to order containers and the ability to insert new containers to their correct order

This commit is contained in:
TheXamlGuy
2024-05-12 18:28:13 +01:00
parent 40671e38b6
commit 77e79a603e
11 changed files with 77 additions and 69 deletions
+6 -3
View File
@@ -1,6 +1,9 @@
namespace Bitvault;
using Toolkit.Foundation;
public interface IContainerFactory
namespace Bitvault
{
Task<bool> Create(string name, SecurityKey key);
public interface IContainerFactory
{
IComponentHost? Create(string name);
}
}