Files
SanchoToro/bdGrupoSanchoToro/db/tablaplumas.cs
2026-01-27 13:08:08 +01:00

24 lines
506 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class tablaplumas
{
public int idPluma { get; set; }
public int idProducto { get; set; }
public double Pluma { get; set; }
public double KgsPunta { get; set; }
public double KgsMaximo { get; set; }
public string? Observaciones { get; set; }
public virtual productos idProductoNavigation { get; set; } = null!;
}