dev #48

Merged
fede merged 88 commits from dev into main 2025-01-24 04:16:01 -03:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit b176ee64b2 - Show all commits
+1
View File
@@ -399,6 +399,7 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.Idpropiedad) entity.Property(e => e.Idpropiedad)
.HasColumnType("int(11)") .HasColumnType("int(11)")
.HasColumnName("idpropiedad"); .HasColumnName("idpropiedad");
entity.Property(e => e.Leido).HasColumnName("leido");
entity.Property(e => e.Mensaje) entity.Property(e => e.Mensaje)
.HasMaxLength(255) .HasMaxLength(255)
.HasColumnName("mensaje"); .HasColumnName("mensaje");
+2
View File
@@ -17,6 +17,8 @@ public partial class Notificacione
public int Idpropiedad { get; set; } public int Idpropiedad { get; set; }
public bool Leido { get; set; }
public virtual Cliente DniclienteNavigation { get; set; } = null!; public virtual Cliente DniclienteNavigation { get; set; } = null!;
public virtual Cliente DniremitenteNavigation { get; set; } = null!; public virtual Cliente DniremitenteNavigation { get; set; } = null!;