8 lines
146 B
C#
8 lines
146 B
C#
|
|
namespace Bitvault
|
|
{
|
|
public interface IVaultFactory
|
|
{
|
|
Task CreateAsync(string name, VaultConfiguration configuration);
|
|
}
|
|
} |