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
+4 -2
View File
@@ -1,9 +1,11 @@
namespace Bitvault;
using System.Diagnostics.CodeAnalysis;
namespace Bitvault;
public record Item
{
public int Id { get; init; }
public string? Name { get; init; }
public string Name { get; init; } = "";
}