Skip to content

Instantly share code, notes, and snippets.

@prakashpun
Created August 28, 2018 06:01
Show Gist options
  • Save prakashpun/3bb1a0ab1c8dc584dc1ce8f113bb7f12 to your computer and use it in GitHub Desktop.
Save prakashpun/3bb1a0ab1c8dc584dc1ce8f113bb7f12 to your computer and use it in GitHub Desktop.
public class User {
private String name;
private String email;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment