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

View File

@@ -399,6 +399,7 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.Idpropiedad)
.HasColumnType("int(11)")
.HasColumnName("idpropiedad");
entity.Property(e => e.Leido).HasColumnName("leido");
entity.Property(e => e.Mensaje)
.HasMaxLength(255)
.HasColumnName("mensaje");

View File

@@ -17,6 +17,8 @@ public partial class Notificacione
public int Idpropiedad { get; set; }
public bool Leido { get; set; }
public virtual Cliente DniclienteNavigation { get; set; } = null!;
public virtual Cliente DniremitenteNavigation { get; set; } = null!;