summaryrefslogtreecommitdiff
path: root/src/org/fox/ttrss/Article.java
blob: 0e156af8211d22e69713f46783336bb28bd2fbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}