Untitled
unknown
java
5 years ago
577 B
8
Indexable
public class Model {
String title, image, description;
//getter and setters press Alt+Insert
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
Editor is loading...