Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public class Person {
  2.     String name;
  3.     String age;
  4.     int photoId;
  5.  
  6.     Person(String name, String age, int photoId) {
  7.         this.name = name;
  8.         this.age = age;
  9.         this.photoId = photoId;
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement