namespace Nop.Core.Domain.Security; /// /// Represents a permission record-customer role mapping class /// public partial class PermissionRecordCustomerRoleMapping : BaseEntity { /// /// Gets or sets the permission record identifier /// public int PermissionRecordId { get; set; } /// /// Gets or sets the customer role identifier /// public int CustomerRoleId { get; set; } }