fIxed issue with filtering

This commit is contained in:
TheXamlGuy
2024-05-26 14:11:42 +01:00
parent 52a682d5fb
commit 859d16c85c
8 changed files with 55 additions and 45 deletions
+23
View File
@@ -0,0 +1,23 @@
namespace Bitvault;
public record Container
{
public Container(string name, string password)
{
Name = name;
Password = password;
}
public Container(string password)
{
Password = password;
}
public Container()
{
}
public string Name { get; } = "";
public string? Password { get; } = "";
}