Files
Final_Das/Entidades/Lote.cs
2024-08-11 18:25:24 -03:00

11 lines
171 B
C#

namespace Entidades
{
public class Lote: Detalle<Producto>
{
public DateTime Fecha { get; set; }
public bool Habilitado { get; set; }
}
}