package com.custom.items; public class ItemFaq { public String title; public String description; public ItemFaq(String _title, String _description) { // TODO Auto-generated constructor stub title = _title; description = _description; } }