12 lines
333 B
C#
12 lines
333 B
C#
using AMREZ.EOP.Domain.Entities.Common;
|
|
|
|
namespace AMREZ.EOP.Domain.Entities.Authentications;
|
|
|
|
public sealed class RolePermission : BaseEntity
|
|
{
|
|
public Guid RoleId { get; set; }
|
|
public Guid PermissionId { get; set; }
|
|
|
|
public Role Role { get; set; } = default!;
|
|
public Permission Permission { get; set; } = default!;
|
|
} |