package com.devtf_l.app.entry; public class Icons { private String title; private int icon; private String count = "5"; private boolean isCounterVisible = true; public Icons() { } public Icons(String title, int icon) { this.title = title; this.icon = icon; } public Icons(String title, int icon, boolean isCounterVisible, String count) { this.title = title; this.icon = icon; this.isCounterVisible = isCounterVisible; this.count = count; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public int getIcon() { return this.icon; } public void setIcon(int icon) { this.icon = icon; } public String getCount() { return this.count; } public void setCount(String count) { this.count = count; } public boolean getCounterVisibility() { return this.isCounterVisible; } public void setCounterVisibility(boolean isCounterVisible) { this.isCounterVisible = isCounterVisible; } }