11 lines
458 B
C#
11 lines
458 B
C#
namespace Entidades.Dto;
|
|
public class PrecontratoDto {
|
|
public string EmailInquilino { get; set; } = "";
|
|
public string EmailPropietario { get; set; } = "";
|
|
public int IdPropiedad { get; set; }
|
|
public int CantidadGarantes { get; set; }
|
|
public int MesesHastaAumento { get; set; }
|
|
public bool TieneOpcionVenta { get; set; }
|
|
public string fechaprimernotificacion { get; set; } = "";
|
|
public int MesesDuracionContrato { get; set; }
|
|
} |