Files
AlquilaFacil/Entidades/Estadodefecto.cs
2024-10-19 18:00:26 -03:00

14 lines
285 B
C#

using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Estadodefecto
{
public int id { get; set; }
public string descipcion { get; set; } = null!;
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
}