Created
August 6, 2019 22:46
-
-
Save buildbro/0d654918e7b0844c031f775d42781671 to your computer and use it in GitHub Desktop.
This file contains 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 TravelDeal implements Serializable { | |
private String id; | |
private String title; | |
private String description; | |
private String price; | |
private String imageUrl; | |
private String imageName; | |
public TravelDeal() { | |
} | |
public TravelDeal(String id, String title, String description, String price, String imageUrl, String imageName) { | |
this.id = id; | |
this.title = title; | |
this.description = description; | |
this.price = price; | |
this.imageUrl = imageUrl; | |
this.imageName = imageName; | |
} | |
public String getId() { | |
return id; | |
} | |
public void setId(String id) { | |
this.id = id; | |
} | |
public String getTitle() { | |
return title; | |
} | |
public void setTitle(String title) { | |
this.title = title; | |
} | |
public String getDescription() { | |
return description; | |
} | |
public void setDescription(String description) { | |
this.description = description; | |
} | |
public String getPrice() { | |
return price; | |
} | |
public void setPrice(String price) { | |
this.price = price; | |
} | |
public String getImageUrl() { | |
return imageUrl; | |
} | |
public void setImageUrl(String imageUrl) { | |
this.imageUrl = imageUrl; | |
} | |
public String getImageName() { | |
return imageName; | |
} | |
public void setImageName(String imageName) { | |
this.imageName = imageName; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment