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(); }