Files
Walleby/Wallet/LengthRule.cs
T
2024-06-09 14:00:36 +01:00

9 lines
159 B
C#

namespace Wallet;
public class LengthRule :
IPasswordRule
{
public int CalculateScore(string password) =>
password.Length >= 8 ? 5 : 0;
}