Files
Walleby/Wallet/IPasswordRule.cs
TheXamlGuy 9daebc7ba2 Codemaid
2024-07-17 21:43:58 +01:00

6 lines
97 B
C#

namespace Wallet;
public interface IPasswordRule
{
int CalculateScore(string password);
}