Files
SanchoToro/bdGrupoSanchoToro/db/modelospermitidos.cs
2026-02-17 13:47:52 +01:00

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!;
}