using AMREZ.EOP.Domain.Entities.Common; namespace AMREZ.EOP.Domain.Entities.Authentications; public sealed class Permission : BaseEntity { public Guid TenantId { get; set; } public string Code { get; set; } = default!; // e.g. "auth:session:read" public string Name { get; set; } = default!; public ICollection RolePermissions { get; set; } = new List(); }