Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
/// 
/// Represents the customer name formatting enumeration
///  
public enum CustomerNameFormat
{
    /// 
    /// Show emails
    ///  
    ShowEmails = 1,
    /// 
    /// Show usernames
    ///  
    ShowUsernames = 2,
    /// 
    /// Show full names
    ///  
    ShowFullNames = 3,
    /// 
    /// Show first name
    ///  
    ShowFirstName = 10
}