Created
March 6, 2016 21:17
-
-
Save eminuluyol/605f8c49777cfa29de33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Created by Emin on 1/2/2016. | |
| */ | |
| public class Person { | |
| private String name; | |
| private String age; | |
| private int photoId; | |
| public Person(String name, String age, int photoId) { | |
| this.name = name; | |
| this.age = age; | |
| this.photoId = photoId; | |
| } | |
| public int getPhotoId() { | |
| return photoId; | |
| } | |
| public String getName() { | |
| return name; | |
| } | |
| public String getAge() { | |
| return age; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment