mirror of
https://github.com/bitwarden/server
synced 2026-02-10 21:50:21 +00:00
7 lines
182 B
C#
7 lines
182 B
C#
namespace Bit.Seeder.Data.Enums;
|
|
|
|
/// <summary>
|
|
/// Password strength levels for test data generation.
|
|
/// </summary>
|
|
public enum PasswordStrength { Weak, Medium, Strong, Mixed }
|