avansando

This commit is contained in:
2025-01-15 00:34:43 -03:00
parent a000b7bd39
commit a6b4e8394d
10 changed files with 324 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
namespace Entidades.Dto;
public class ContratoDto {
public long id { get; set; }
public string Ubicacion { get; set; }="";
public string TipoPropiedad { get; set; }="";
public DateTime Fechainicio { get; set; }
public string Inquilino { get; set; }="";
public string Propietario { get; set; }="";
public string Estado {get; set;}="";
}