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

9 lines
181 B
C#

namespace Wallet;
public record NumberEntryConfiguration :
ItemEntryConfiguration<string>
{
public int MinLength { get; set; }
public int MaxLength { get; set; }
}