Add support for self scope

This commit is contained in:
TheXamlGuy
2024-05-12 12:22:04 +01:00
parent c1b6e595bc
commit 4024ebfe38
15 changed files with 62 additions and 27 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Bitvault;
public class ContainerConnection(string connection)
{
private readonly string connection = connection;
public override string ToString() => connection;
}