22 lines
526 B
C#
22 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdGrupoSanchoToro.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class versionesgruas
|
|
{
|
|
public int idVersion { get; set; }
|
|
|
|
public int idProducto { get; set; }
|
|
|
|
public int Version { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public virtual productos idProductoNavigation { get; set; } = null!;
|
|
|
|
public virtual ICollection<tablaalturas> tablaalturas { get; set; } = new List<tablaalturas>();
|
|
}
|