feat(Usuario): creado DTO input de Usuario

parent fdabd350
package com.example.apprecetas.infrastructure.controller;
import lombok.Data;
@Data
public class UsuarioInputDto {
private String nombre;
private String apellidos;
private String email;
private String password;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment