11 lines
269 B
C#
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>();
|
|
}
|