Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.hotspotstore.model;

public class ImagePojo {
        private String title;
        private String url;
        
        
        public ImagePojo(String title, String url) {
                super();
                this.title = title;
                this.url = url;
        }
        public String getTitle() {
                return title;
        }
        public void setTitle(String title) {
                this.title = title;
        }
        public String getUrl() {
                return url;
        }
        public void setUrl(String url) {
                this.url = url;
        }
}