package com.cmcdelhi.cmcdelhiquark;
public class RowItemCourse {
private int imageId;
private String title;
private String desc;
public RowItemCourse(int imageId, String title, String desc) {
this.imageId = imageId;
this.setTitle(title);
this.setDesc(desc);
}
public int getImageId() {
return imageId;
}
public void setImageId(int imageId) {
this.imageId = imageId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
@Override
public String toString() {
return title + "\n" + desc;
}
}