Webiant Logo Webiant Logo
  1. No results found.

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

CustomerCustomerRoleMapping.cs

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