Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
///
/// Represents the customer login result enumeration
///
public enum CustomerLoginResults
{
///
/// Login successful
///
Successful = 1,
///
/// Customer does not exist (email or username)
///
CustomerNotExist = 2,
///
/// Wrong password
///
WrongPassword = 3,
///
/// Account have not been activated
///
NotActive = 4,
///
/// Customer has been deleted
///
Deleted = 5,
///
/// Customer not registered
///
NotRegistered = 6,
///
/// Locked out
///
LockedOut = 7,
///
/// Requires multi-factor authentication
///
MultiFactorAuthenticationRequired = 8
}