Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CustomerNameFormat.cs

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
}