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