feat(Usuario): implementado modelo de datos Usuario

parent 62287e22
package com.example.apprecetas.domain.entity;
import lombok.*;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Usuario {
private Long id;
private String nombre;
private String apellido;
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