From f8692ccdf08c2fdafa68639db2313098e886a025 Mon Sep 17 00:00:00 2001 From: fede Date: Fri, 24 Jan 2025 16:24:43 -0300 Subject: [PATCH] migracion: ahora la fecha de inicio no es opcional --- Entidades/Venta.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Entidades/Venta.cs b/Entidades/Venta.cs index 200b45c..d1118be 100644 --- a/Entidades/Venta.cs +++ b/Entidades/Venta.cs @@ -17,7 +17,7 @@ public partial class Venta public int? Idpropiedad { get; set; } - public DateTime Fechainicio { get; set; } + public DateTime? Fechainicio { get; set; } public DateTime? Fechafinal { get; set; }