cambios 17/02/2026
This commit is contained in:
29
bdGrupoSanchoToro/db/modelospermitidos.cs
Normal file
29
bdGrupoSanchoToro/db/modelospermitidos.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user