Skip to content

Instantly share code, notes, and snippets.

@mbround18
Created November 13, 2018 02:26
Show Gist options
  • Save mbround18/e3d37925ac92be35186dbedb4b6e74fc to your computer and use it in GitHub Desktop.
Save mbround18/e3d37925ac92be35186dbedb4b6e74fc to your computer and use it in GitHub Desktop.
package models;
public class User {
private String first;
private String last;
public User(
String firstName,
String lastName
)
{
first = firstName;
last = lastName;
}
public String firstName() {
return first;
}
public String lastName() {
return last;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment