Subversion Repositories SmartDukaan

Rev

Rev 1961 | Blame | Last modification | View Log | RSS feed

package in.shop2020.catalog.dashboard.shared;


import java.util.List;

public class CatalogResults {
    List<Item> latestArrivals;
    List<Item> bestDeals;

    public List<Item> getLatestArrivals() {
        return latestArrivals;
    }
    public void setLatestArrivals(List<Item> latestArrivals) {
        this.latestArrivals = latestArrivals;
    }
    public List<Item> getBestDeals() {
        return bestDeals;
    }
    public void setBestDeals(List<Item> bestDeals) {
        this.bestDeals = bestDeals;
    }
}