Last active
August 26, 2018 12:54
-
-
Save ashishrawat2911/284927570007ff2de78012771bf5d62e 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
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