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