Skip to content

Instantly share code, notes, and snippets.

@mozerian
Created July 17, 2020 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mozerian/d636f82e637d9d5f742efe47098c9dda to your computer and use it in GitHub Desktop.
Save mozerian/d636f82e637d9d5f742efe47098c9dda to your computer and use it in GitHub Desktop.
package com.example.twostepauthentication;
public class Constants
{
public String First_Name,Other_Name,Phone;
public String getFirst_Name() {
return First_Name;
}
public void setFirst_Name(String first_Name) {
First_Name = first_Name;
}
public String getOther_Name() {
return Other_Name;
}
public void setOther_Name(String other_Name) {
Other_Name = other_Name;
}
public String getPhone() {
return Phone;
}
public void setPhone(String phone) {
Phone = phone;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment