actualizacion de entidades

This commit is contained in:
2024-10-28 22:42:02 -03:00
parent c861a4b194
commit d75d6c52b6
15 changed files with 411 additions and 238 deletions
+13
View 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>();
}