9 lines
178 B
C#
9 lines
178 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Bitvault
|
|
{
|
|
public interface IVaultFactory
|
|
{
|
|
IComponentHost? Create(string name, VaultConfiguration configuration);
|
|
}
|
|
} |