Files
AlquilaFacil/Entidades/Permiso.cs
2024-11-03 04:49:54 -03:00

16 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Entidades;
public partial class Permiso
{
public int Id { get; set; }
public string? Descripcion { get; set; }
[JsonIgnore]
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
}