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