Skip to content

Instantly share code, notes, and snippets.

@eminuluyol
Created March 6, 2016 21:17
Show Gist options
  • Select an option

  • Save eminuluyol/605f8c49777cfa29de33 to your computer and use it in GitHub Desktop.

Select an option

Save eminuluyol/605f8c49777cfa29de33 to your computer and use it in GitHub Desktop.
/**
* 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