package com.viewpagerindicator; import java.io.Serializable; public class ImagePath implements Serializable { String imgUrl; Integer imgId; public String getImgUrl() { return imgUrl; } public void setImgUrl(String imgUrl) { this.imgUrl = imgUrl; } public Integer getImgId() { return imgId; } public void setImgId(Integer imgId) { this.imgId = imgId; } }