24 lines
535 B
C#
24 lines
535 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdGrupoSanchoToro.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class tablaalturas
|
|
{
|
|
public int idAltura { get; set; }
|
|
|
|
public int idProducto { get; set; }
|
|
|
|
public int? idVersion { get; set; }
|
|
|
|
public double Altura { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public virtual productos idProductoNavigation { get; set; } = null!;
|
|
|
|
public virtual versionesgruas? idVersionNavigation { get; set; }
|
|
}
|