1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package org.fox.ttrss; import java.util.List; public class Article { int id; boolean unread; boolean marked; boolean published; int updated; boolean is_updated; String title; String link; int feed_id; List<String> tags; String content; boolean _selected; }