modified: Entidades/Grupo.cs modified: Front/src/lib/NavBarAutocompletable.svelte new file: Front/src/lib/css/popup.css modified: Modelo/RepositorioPermisos.cs
18 lines
419 B
C#
18 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Grupo
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Nombre { get; set; } = null!;
|
|
|
|
[JsonIgnore]
|
|
public virtual ICollection<Cliente> Idclientes { get; set; } = new List<Cliente>();
|
|
|
|
public virtual ICollection<Permiso> Idpermisos { get; set; } = new List<Permiso>();
|
|
}
|