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; } }