14 lines
285 B
C#
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>();
|
|
}
|