Skip to content

Instantly share code, notes, and snippets.

@bariskarapinar
Last active October 7, 2019 19:12
Show Gist options
  • Save bariskarapinar/27a52a0f935154734c6f2c0709ef761a to your computer and use it in GitHub Desktop.
Save bariskarapinar/27a52a0f935154734c6f2c0709ef761a to your computer and use it in GitHub Desktop.
package com.example.firebaseauthproject;
public class Userinformation {
public String name;
public String surname;
public String phoneno;
public Userinformation(){
}
public Userinformation(String name,String surname, String phoneno){
this.name = name;
this.surname = surname;
this.phoneno = phoneno;
}
public String getUserName() {
return name;
}
public String getUserSurname() {
return surname;
}
public String getUserPhoneno() {
return phoneno;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment