Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class User {
  2. public final String firstName;
  3. public final String lastName;
  4. public User(String firstName, String lastName) {
  5. this.firstName = firstName;
  6. this.lastName = lastName;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement