package com.thomasdh.roosterpgplus.Models; public class PGTVPage { public String title; public String desc; public PGTVPage(String title, String desc) { this.title = title; this.desc = desc; } }