11 lines
286 B
C#
11 lines
286 B
C#
namespace back.Entities.DTOs.Request
|
|
{
|
|
public class CasaWitDirecctionRequestDto
|
|
{
|
|
public string NombreCasa { get; set; } = string.Empty;
|
|
public int NumeroHabitaciones { get; set; }
|
|
public DireccionRequestDto Direction { get; set; }
|
|
|
|
}
|
|
}
|