Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10379 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
2
 
3
import in.shop2020.metamodel.util.ProductPojo;
4
 
5
import java.util.List;
6
 
7
 
8
public class PaginationPojo {
9
	private Long count;
10
	private List<ProductPojo> items;
11
	public Long getCount() {
12
		return count;
13
	}
14
	public void setCount(Long count) {
15
		this.count = count;
16
	}
17
	public List<ProductPojo> getItems() {
18
		return items;
19
	}
20
	public void setItems(List<ProductPojo> items) {
21
		this.items = items;
22
	}
23
 
24
}