Fixed more edge cases

This commit is contained in:
TheXamlGuy
2024-05-21 20:32:41 +01:00
parent 15de406460
commit 5c1a579984
24 changed files with 173 additions and 87 deletions
+3 -7
View File
@@ -1,6 +1,4 @@
using System.Diagnostics.CodeAnalysis;
namespace Bitvault;
namespace Bitvault;
public record ContainerToken
{
@@ -21,9 +19,7 @@ public record ContainerToken
}
[MaybeNull]
public string Name { get; }
public string Name { get; } = "";
[MaybeNull]
public string? Password { get; }
public string? Password { get; } = "";
}