Last active
October 7, 2019 19:12
-
-
Save bariskarapinar/27a52a0f935154734c6f2c0709ef761a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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