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 Defectos { get; set; } = new List(); }