Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Person {
- String name;
- String age;
- int photoId;
- Person(String name, String age, int photoId) {
- this.name = name;
- this.age = age;
- this.photoId = photoId;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement