Initial support for masking

This commit is contained in:
TheXamlGuy
2024-06-08 18:00:36 +01:00
parent 05a6cd4540
commit 64847f2096
17 changed files with 377 additions and 71 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ public record DropdownEntryConfiguration :
ItemEntryConfiguration
{
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string[]? Values { get; set; }
public IList<string> Values { get; set; } = new List<string>();
}