Files
SanchoToro/bdGrupoSanchoToro/db/modelosgruas.cs
2026-01-27 09:26:42 +01:00

30 lines
855 B
C#

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> tablaalturas { get; set; } = new List<tablaalturas>();
public virtual ICollection<tablaplumas> tablaplumas { get; set; } = new List<tablaplumas>();
public virtual ICollection<versionesgruas> versionesgruas { get; set; } = new List<versionesgruas>();
}