30 lines
719 B
C#
30 lines
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdGrupoSanchoToro.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class modelospermitidos
|
|
{
|
|
public int idModeloPermitido { get; set; }
|
|
|
|
public int idProducto { get; set; }
|
|
|
|
public int idModeloGrua { get; set; }
|
|
|
|
public bool Version_Apoyada { get; set; }
|
|
|
|
public bool Version_Automontante { get; set; }
|
|
|
|
public bool Version_Bicolumna { get; set; }
|
|
|
|
public bool Version_Empotrada { get; set; }
|
|
|
|
public bool Version_ConTraslacion { get; set; }
|
|
|
|
public virtual productos idModeloGruaNavigation { get; set; } = null!;
|
|
|
|
public virtual productos idProductoNavigation { get; set; } = null!;
|
|
}
|