chore: regeneradas las entidades de propiedad contrato y estado propiedad

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-11-09 01:20:27 -03:00
parent 784962c077
commit 9d381f6f76
4 changed files with 48 additions and 0 deletions
+13
View 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>();
}