Files
PersonaCasa/back/Entities/DTOs/Request/DireccionRequestDto.cs
Alejandro Sarmiento b672887299 Primera subida
2024-04-06 03:32:16 +02:00

9 lines
200 B
C#

namespace back.Entities.DTOs.Request
{
public class DireccionRequestDto
{
public string Calle { get; set; } = string.Empty;
public int? Numero { get; set; }
}
}