using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class modelosgruas { public int idProducto { get; set; } public string Modelo { get; set; } = null!; public int idMarca { get; set; } public DateTime? FechaAlta { get; set; } public DateTime? FechaBaja { get; set; } public virtual marcasgruas idMarcaNavigation { get; set; } = null!; public virtual productos idProductoNavigation { get; set; } = null!; public virtual ICollection tablaalturas { get; set; } = new List(); public virtual ICollection tablaplumas { get; set; } = new List(); public virtual ICollection versiones { get; set; } = new List(); }