package com.example.demo.common;

public class PageResponse {
	private int pageCount;
	private int pageSize;
	private int totalCount;

	public PageResponse() {
		super();
	}

	public PageResponse(int pageCount, int pageSize, int totalCount) {
		super();
		this.pageCount = pageCount;
		this.pageSize = pageSize;
		this.totalCount = totalCount;
	}

	public int getPageCount() {
		return pageCount;
	}

	public void setPageCount(int pageCount) {
		this.pageCount = pageCount;
	}

	public int getPageSize() {
		return pageSize;
	}

	public void setPageSize(int pageSize) {
		this.pageSize = pageSize;
	}

	public int getTotalCount() {
		return totalCount;
	}

	public void setTotalCount(int totalCount) {
		this.totalCount = totalCount;
	}

}
