Skip to content

Instantly share code, notes, and snippets.

@CodingTricksHub
Created June 15, 2017 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodingTricksHub/a9770708c2f7d8ba483c330684a9324c to your computer and use it in GitHub Desktop.
Save CodingTricksHub/a9770708c2f7d8ba483c330684a9324c to your computer and use it in GitHub Desktop.
package com.codingtrickshub.checkboxlistview.model;
public class Category {
private int cateogry_id;
private String category_Name;
private boolean isSelected;
public int getCateogry_id() {
return cateogry_id;
}
public void setCateogry_id(int cateogry_id) {
this.cateogry_id = cateogry_id;
}
public String getCategory_Name() {
return category_Name;
}
public void setCategory_Name(String category_Name) {
this.category_Name = category_Name;
}
public boolean isSelected() {
return isSelected;
}
public void setSelected(boolean selected) {
isSelected = selected;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment