Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
///
/// Password format
///
public enum PasswordFormat
{
///
/// Clear
///
Clear = 0,
///
/// Hashed
///
Hashed = 1,
///
/// Encrypted
///
Encrypted = 2
}