package com.godoro.androidcustoms;
public class CustomGridEntity {
private long entityId;
private String entityTitle;
private String imageAddress;
public CustomGridEntity(long entityId, String entityTitle, String imageAddress) {
this.entityId = entityId;
this.entityTitle = entityTitle;
this.imageAddress = imageAddress;
}
public CustomGridEntity() {
}
public long getEntityId() {
return entityId;
}
public void setEntityId(long entityId) {
this.entityId = entityId;
}
public String getEntityTitle() {
return entityTitle;
}
public void setEntityTitle(String entityTitle) {
this.entityTitle = entityTitle;
}
public String getImageAddress() {
return imageAddress;
}
public void setImageAddress(String imageAddress) {
this.imageAddress = imageAddress;
}
}
Dosyayı İndir