Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Security;
/// 
/// Represents an ACL record
///  
public partial class AclRecord : BaseEntity
{
    /// 
    /// Gets or sets the entity identifier
    ///  
    public int EntityId { get; set; }
    /// 
    /// Gets or sets the entity name
    ///  
    public string EntityName { get; set; }
    /// 
    /// Gets or sets the customer role identifier
    ///  
    public int CustomerRoleId { get; set; }
}