Webiant Logo Webiant Logo
  1. No results found.

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

PermissionRecordCustomerRoleMapping.cs

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