bitwarden-mobile/src/App/Controls/PasswordStrengthProgressBar/IPasswordStrengthable.cs

12 lines
199 B
C#

using System.Collections.Generic;
namespace Bit.App.Controls
{
public interface IPasswordStrengthable
{
string Password { get; }
List<string> UserInputs { get; }
}
}