Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.cart.v2;

public class CartContent {

        private String title;
        private String imageUrl;
        private String color;
        private String brand;
        private Integer categoryId;

        public CartContent() {}

        public String getTitle() { return title; }
        public void setTitle(String title) { this.title = title; }

        public String getImageUrl() { return imageUrl; }
        public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; }

        public String getColor() { return color; }
        public void setColor(String color) { this.color = color; }

        public String getBrand() { return brand; }
        public void setBrand(String brand) { this.brand = brand; }

        public Integer getCategoryId() { return categoryId; }
        public void setCategoryId(Integer categoryId) { this.categoryId = categoryId; }
}