me traigo todos los cambios del recuperar cuenta y set email respaldo
This commit is contained in:
@@ -136,6 +136,9 @@ public partial class AlquilaFacilContext : DbContext
|
||||
entity.Property(e => e.EmailRecuperacion)
|
||||
.HasMaxLength(50)
|
||||
.HasColumnName("emailRecuperacion");
|
||||
entity.Property(e => e.F2a)
|
||||
.HasMaxLength(6)
|
||||
.HasColumnName("f2a");
|
||||
entity.Property(e => e.Habilitado)
|
||||
.HasDefaultValueSql("b'1'")
|
||||
.HasColumnType("bit(1)")
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
@@ -25,6 +25,9 @@ public partial class Cliente
|
||||
|
||||
public string? EmailRecuperacion { get; set; }
|
||||
|
||||
public string? F2a { get; set; }
|
||||
|
||||
|
||||
public virtual ICollection<Contrato> ContratoDniinquilinoNavigations { get; set; } = new List<Contrato>();
|
||||
|
||||
public virtual ICollection<Contrato> ContratoDnipropietarioNavigations { get; set; } = new List<Contrato>();
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
public partial class EstadoPropiedad
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
public partial class LogDetalle
|
||||
{
|
||||
public DateTime Fecha { get; set; }
|
||||
|
||||
public long Dniusuario { get; set; }
|
||||
|
||||
public string NombreTabla { get; set; } = null!;
|
||||
|
||||
public string Columna { get; set; } = null!;
|
||||
|
||||
public string? ValorAnterior { get; set; }
|
||||
|
||||
public string? ValorNuevo { get; set; }
|
||||
|
||||
public int Id { get; set; }
|
||||
|
||||
public virtual Log Log { get; set; } = null!;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
public partial class TipoPropiedad
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entidades;
|
||||
|
||||
Reference in New Issue
Block a user