package com.bizofficer.website.courses;

import java.util.List;

public class WebCatAndCoursesResponseBean {

	private Integer categoryId;
	private String categoryName;
	private List<WebCoursesDetailsBean> coursesList; 
	
	public Integer getCategoryId() {
		return categoryId;
	}
	public void setCategoryId(Integer categoryId) {
		this.categoryId = categoryId;
	}
	public String getCategoryName() {
		return categoryName;
	}
	public void setCategoryName(String categoryName) {
		this.categoryName = categoryName;
	}
	public List<WebCoursesDetailsBean> getCoursesList() {
		return coursesList;
	}
	public void setCoursesList(List<WebCoursesDetailsBean> coursesList) {
		this.coursesList = coursesList;
	}
	
	
	

	

	

	
	
	
}
