Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
36376 aman 1
package com.spice.profitmandi.dao.cart.v2;
2
 
3
public class CartContent {
4
 
5
	private String title;
6
	private String imageUrl;
7
	private String color;
8
	private String brand;
9
	private Integer categoryId;
10
 
11
	public CartContent() {}
12
 
13
	public String getTitle() { return title; }
14
	public void setTitle(String title) { this.title = title; }
15
 
16
	public String getImageUrl() { return imageUrl; }
17
	public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; }
18
 
19
	public String getColor() { return color; }
20
	public void setColor(String color) { this.color = color; }
21
 
22
	public String getBrand() { return brand; }
23
	public void setBrand(String brand) { this.brand = brand; }
24
 
25
	public Integer getCategoryId() { return categoryId; }
26
	public void setCategoryId(Integer categoryId) { this.categoryId = categoryId; }
27
}