Subversion Repositories SmartDukaan

Rev

Rev 9218 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.metamodel.util;

public class MediaPojo {
        private String title;
        private String url;
        
        
        public MediaPojo(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;
        }
}