Files
Walleby/Wallet/MaskedTextEntryConfiguration.cs
T
2024-07-15 21:14:30 +01:00

11 lines
252 B
C#

using System.Text.Json.Serialization;
namespace Wallet;
public record MaskedTextEntryConfiguration :
ItemEntryConfiguration<string>
{
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Pattern { get; set; }
}