Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21378 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class CartItems
4
{
5
    private String imageUrl;
6
    private String dealText;
7
    private int itemId;
8
    private long maxQuantity;
9
    private int estimate;
10
    private int quantityStep;
11
    private int packQuantity;
12
    private int minBuyQuantity;
13
    private BulkPricing[] bulkPricing;
14
    private String categoryName;
15
    private double sellingPrice;
16
    private String title;
17
    private CartItemMessages[] cartItemMessages;
18
    private String color;
19
    private long quantity;
20
    private long catalogItemId;
21
 
22
 
23
}