8 lines
280 B
C#
8 lines
280 B
C#
namespace Entidades.Dto;
|
|
public class ContratoPropiedadDto : ContratoDto {
|
|
public int Habitaciones { get; set; }
|
|
public int Piso { get; set;}
|
|
public string Letra { get; set; } = "";
|
|
public int MesesAumento { get; set; }
|
|
public int MesesDuracion { get; set; }
|
|
} |