ja acabei a app acho?

This commit is contained in:
2026-02-27 15:36:33 +00:00
parent 014432157d
commit 8649ca9ce9
216 changed files with 304 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
package com.example.cuida.data.model;
import com.google.gson.annotations.SerializedName;
public class Perfil {
@SerializedName("id")
private String id;
@SerializedName("nome_completo")
private String nome_completo;
@SerializedName("idade")
private int idade;
@SerializedName("numero_utente")
private String numero_utente;
@SerializedName("gmail")
private String gmail;
public Perfil(String id, String nome, int idade, String utente, String email) {
this.id = id;
this.nome_completo = nome;
this.idade = idade;
this.numero_utente = utente;
this.gmail = email;
}
// Getters
public String getId() {
return id;
}
public String getNomeCompleto() {
return nome_completo;
}
public int getIdade() {
return idade;
}
public String getNumeroUtente() {
return numero_utente;
}
public String getGmail() {
return gmail;
}
// Setters
public void setId(String id) {
this.id = id;
}
public void setNomeCompleto(String nome_completo) {
this.nome_completo = nome_completo;
}
public void setIdade(int idade) {
this.idade = idade;
}
public void setNumeroUtente(String numero_utente) {
this.numero_utente = numero_utente;
}
public void setGmail(String gmail) {
this.gmail = gmail;
}
}