switched to valuetuples for exhanging tokens

This commit is contained in:
TheXamlGuy
2024-05-27 20:43:18 +01:00
parent 1be1399511
commit 9535f75835
17 changed files with 85 additions and 94 deletions
+2 -5
View File
@@ -1,8 +1,5 @@
namespace Bitvault;
public record Item
{
public Guid Id { get; init; }
public record Item<TValue>(TValue Value);
public string? Name { get; init; } = "";
}
public record Item;