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