9 lines
342 B
C#
9 lines
342 B
C#
namespace Entidades.Dto;
|
|
public class AltaPropiedadDto {
|
|
public string Ubicacion { get; set; } = null!;
|
|
public int Canthabitaciones { get; set; }
|
|
public int? Piso { get; set; } = null;
|
|
public string? Letra { get; set; } = null;
|
|
public string Email { get; set; } = string.Empty;
|
|
public int Idtipropiedad { get; set; }
|
|
} |