14 lines
289 B
C#
14 lines
289 B
C#
|
|
namespace Entidades
|
|
{
|
|
public class Lote
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Fecha { get; set; }
|
|
public Producto Producto { get; set; }
|
|
public long CantidadDeProductos { get; set; }
|
|
public bool Habilitado { get; set; }
|
|
}
|
|
|
|
}
|