WIP
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace Bitvault;
|
||||
|
||||
public record Container
|
||||
{
|
||||
public Container(string name, string password)
|
||||
{
|
||||
Name = name;
|
||||
Password = password;
|
||||
}
|
||||
|
||||
public Container(string password)
|
||||
{
|
||||
Password = password;
|
||||
}
|
||||
|
||||
public Container()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
[MaybeNull]
|
||||
public string Name { get; }
|
||||
|
||||
[MaybeNull]
|
||||
public string? Password { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user