Files
Walleby/Wallet/DropdownEntryConfiguration.cs
T
2024-06-09 14:00:36 +01:00

11 lines
269 B
C#

using System.Text.Json.Serialization;
namespace Wallet;
public record DropdownEntryConfiguration :
ItemEntryConfiguration
{
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public IList<string> Values { get; set; } = new List<string>();
}