14 lines
271 B
C#
14 lines
271 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Rol
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Descipcion { get; set; } = null!;
|
|
|
|
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
|
|
}
|