7 lines
100 B
C#
7 lines
100 B
C#
namespace Bitvault;
|
|
|
|
public interface IPasswordRule
|
|
{
|
|
int CalculateScore(string password);
|
|
}
|