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