namespace Nop.Core.Domain.Customers;
/// <summary>
/// Password format
/// </summary>
public enum PasswordFormat
{
/// Clear
Clear = 0,
/// Hashed
Hashed = 1,
/// Encrypted
Encrypted = 2
}