9 lines
192 B
C#
9 lines
192 B
C#
namespace Bitvault
|
|
{
|
|
public interface IVaultConnectionPersistence
|
|
{
|
|
void Dispose();
|
|
string? Get(string key);
|
|
void Set(string key, string connection);
|
|
}
|
|
} |