Files
SanchoToro/bdGrupoSanchoToro/db/versiones.cs
2026-01-26 13:12:47 +01:00

22 lines
520 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class versiones
{
public int idVersion { get; set; }
public int idModelo { get; set; }
public int Version { get; set; }
public string? Observaciones { get; set; }
public virtual modelosgruas idModeloNavigation { get; set; } = null!;
public virtual ICollection<tablaalturas> tablaalturas { get; set; } = new List<tablaalturas>();
}