Add code for opening vault

This commit is contained in:
TheXamlGuy
2024-05-02 23:07:47 +01:00
parent c324cf9542
commit c1613d765c
11 changed files with 54 additions and 112 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Bitvault;
public class VaultStorageConnection(string connection)
{
private readonly string connection = connection;
public override string ToString() => connection;
}