30 lines
840 B
C#
30 lines
840 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<versiones> versiones { get; set; } = new List<versiones>();
|
|
}
|