Mass rename project for rebranding
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace Wallet;
|
||||
|
||||
public partial class DigitRule :
|
||||
IPasswordRule
|
||||
{
|
||||
public int CalculateScore(string password) =>
|
||||
Regex().IsMatch(password) ? 2 : 0;
|
||||
|
||||
[GeneratedRegex(@"\d")]
|
||||
private static partial Regex Regex();
|
||||
}
|
||||
Reference in New Issue
Block a user