Skip to content

Instantly share code, notes, and snippets.

@ashishrawat2911
Last active August 26, 2018 12:54
Show Gist options
  • Save ashishrawat2911/284927570007ff2de78012771bf5d62e to your computer and use it in GitHub Desktop.
Save ashishrawat2911/284927570007ff2de78012771bf5d62e to your computer and use it in GitHub Desktop.
public class Photographer {
String photoGrapherName;
String photographerImageUrl;
public Photographer(String photoGrapherName, String photographerImageUrl) {
this.photoGrapherName = photoGrapherName;
this.photographerImageUrl = photographerImageUrl;
}
public String getPhotoGrapherName() {
return photoGrapherName;
}
public void setPhotoGrapherName(String photoGrapherName) {
this.photoGrapherName = photoGrapherName;
}
public String getPhotographerImageUrl() {
return photographerImageUrl;
}
public void setPhotographerImageUrl(String photographerImageUrl) {
this.photographerImageUrl = photographerImageUrl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment