Files
AlquilaFacil/Entidades/Dto/PropietarioDto.cs

7 lines
176 B
C#

namespace Entidades.Dto;
public class PropietarioDto{
public string Nombre {get; set;} = "";
public long Dni {get; set;}
public string Apellido {get; set;} = "";
}