16 lines
364 B
C#
16 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Grupo
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Nombre { get; set; } = null!;
|
|
|
|
public virtual ICollection<Cliente> Idclientes { get; set; } = new List<Cliente>();
|
|
|
|
public virtual ICollection<Permiso> Idpermisos { get; set; } = new List<Permiso>();
|
|
}
|