Mango.Nop.Libraries/Nop.Core/Domain/Security/PermissionRecordCustomerRol...

17 lines
476 B
C#

namespace Nop.Core.Domain.Security;
/// <summary>
/// Represents a permission record-customer role mapping class
/// </summary>
public partial class PermissionRecordCustomerRoleMapping : BaseEntity
{
/// <summary>
/// Gets or sets the permission record identifier
/// </summary>
public int PermissionRecordId { get; set; }
/// <summary>
/// Gets or sets the customer role identifier
/// </summary>
public int CustomerRoleId { get; set; }
}