This commit is contained in:
TheXamlGuy
2024-07-13 21:35:58 +01:00
parent 3b4deea573
commit f4f9fdac46
32 changed files with 369 additions and 235 deletions
@@ -0,0 +1,10 @@
using System.Text.Json.Serialization;
namespace Wallet;
public record DropdownEntryCollectionConfiguration :
ItemEntryConfiguration
{
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public IList<string> Values { get; set; } = new List<string>();
}