Esta todo a medio hacerse pero quiero versionar esto ya para no perder
nada
This commit is contained in:
13
Entidades/EstadoPropiedad.cs
Normal file
13
Entidades/EstadoPropiedad.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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>();
|
||||
}
|
||||
23
Entidades/LogDetalle.cs
Normal file
23
Entidades/LogDetalle.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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!;
|
||||
}
|
||||
13
Entidades/TipoPropiedad.cs
Normal file
13
Entidades/TipoPropiedad.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user