Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
///
/// Represents a customer-customer role mapping class
///
public partial class CustomerCustomerRoleMapping : BaseEntity
{
///
/// Gets or sets the customer identifier
///
public int CustomerId { get; set; }
///
/// Gets or sets the customer role identifier
///
public int CustomerRoleId { get; set; }
}