using System.Threading.Tasks; namespace Knoks.Framework.Security { public interface IPasswordStrength { Task CheckStrength(string password); } }