using AMREZ.EOP.Domain.Entities.Common; namespace AMREZ.EOP.Domain.Entities.Authentications; public sealed class Role : BaseEntity { public string Code { get; set; } = default!; public string Name { get; set; } = default!; public ICollection UserRoles { get; set; } = new List(); public ICollection RolePermissions { get; set; } = new List(); }