23 lines
513 B
C#
23 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
public class DetalleEnvioModel
|
|
{
|
|
public int idEnvio;
|
|
public Producto producto;
|
|
public int cantidad;
|
|
|
|
public DetalleEnvioModel(int idEnvio, Producto producto, int cantidad)
|
|
{
|
|
this.idEnvio = idEnvio;
|
|
this.producto = producto;
|
|
this.cantidad = cantidad;
|
|
}
|
|
}
|
|
}
|