9 lines
173 B
C#
9 lines
173 B
C#
namespace Wallet;
|
|
|
|
public record NumberEntryConfiguration :
|
|
ItemEntryConfiguration
|
|
{
|
|
public int MinLength { get; set; }
|
|
|
|
public int MaxLength { get; set; }
|
|
} |