Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Security;
///
/// Represents a permission record
///
public partial class PermissionRecord : BaseEntity
{
///
/// Gets or sets the permission name
///
public string Name { get; set; }
///
/// Gets or sets the permission system name
///
public string SystemName { get; set; }
///
/// Gets or sets the permission category
///
public string Category { get; set; }
}