Files
Walleby/Bitvault/DropdownEntryConfiguration.cs
T
2024-06-08 18:00:36 +01:00

11 lines
271 B
C#

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