Article: add support for labels
This commit is contained in:
parent
3bc2ad56e9
commit
2e3f278fd1
@ -5,7 +5,7 @@ import java.util.List;
|
|||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
|
||||||
|
// TODO: serialize Labels
|
||||||
public class Article implements Parcelable {
|
public class Article implements Parcelable {
|
||||||
int id;
|
int id;
|
||||||
boolean unread;
|
boolean unread;
|
||||||
@ -18,6 +18,7 @@ public class Article implements Parcelable {
|
|||||||
int feed_id;
|
int feed_id;
|
||||||
List<String> tags;
|
List<String> tags;
|
||||||
String content;
|
String content;
|
||||||
|
List<List<String>> labels;
|
||||||
|
|
||||||
public Article(Parcel in) {
|
public Article(Parcel in) {
|
||||||
readFromParcel(in);
|
readFromParcel(in);
|
||||||
|
Loading…
Reference in New Issue
Block a user