17 lines
406 B
C#
17 lines
406 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; }
|
|
public string NombreProducto
|
|
{
|
|
get { return Producto?.Nombre ?? string.Empty; }
|
|
}
|
|
}
|
|
}
|