It it now possible to create/edit item contents
This commit is contained in:
+2
-20
@@ -1,23 +1,5 @@
|
||||
namespace Bitvault;
|
||||
|
||||
public record Locker
|
||||
{
|
||||
public Locker(string name, string password)
|
||||
{
|
||||
Name = name;
|
||||
Password = password;
|
||||
}
|
||||
public record Locker<TValue>(TValue Value);
|
||||
|
||||
public Locker(string password)
|
||||
{
|
||||
Password = password;
|
||||
}
|
||||
|
||||
public Locker()
|
||||
{
|
||||
}
|
||||
|
||||
public string Name { get; } = "";
|
||||
|
||||
public string? Password { get; } = "";
|
||||
}
|
||||
public record Locker;
|
||||
Reference in New Issue
Block a user