Versión 2
This commit is contained in:
23
bdGrupoSanchoToro/db/tablaplumas.cs
Normal file
23
bdGrupoSanchoToro/db/tablaplumas.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class tablaplumas
|
||||
{
|
||||
public int idPluma { get; set; }
|
||||
|
||||
public int idModelo { get; set; }
|
||||
|
||||
public double Pluma { get; set; }
|
||||
|
||||
public double KgsPunta { get; set; }
|
||||
|
||||
public double KgsMaximo { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual modelosgruas idModeloNavigation { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user