2026/07/01-01
This commit is contained in:
21
bdGrupoSanchoToro/db/versionesgruas.cs
Normal file
21
bdGrupoSanchoToro/db/versionesgruas.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class versionesgruas
|
||||
{
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user