Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Last active February 26, 2018 13:39
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 ssaurel/74aa07c33d74d23fafb0c5c635b3c4ca to your computer and use it in GitHub Desktop.
Save ssaurel/74aa07c33d74d23fafb0c5c635b3c4ca to your computer and use it in GitHub Desktop.
Contact POJO for a tutorial on the SSaurel's Channel
package excel;
public class Contact {
public String firstName;
public String lastName;
public String email;
public String dateOfBirth;
public Contact(String firstName, String lastName, String email,
String dateOfBirth) {
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
this.dateOfBirth = dateOfBirth;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment