Webiant Logo Webiant Logo
  1. No results found.

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

AclRecord.cs

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