basic implementation of #288

This commit is contained in:
David Development 2015-01-10 19:12:04 +01:00
parent 95df796890
commit 495b7b33ce

View file

@ -0,0 +1,24 @@
package de.luhmer.owncloudnewsreader.model;
/**
* Created by David on 10.01.2015.
*/
public class TTSItem {
public TTSItem() {
}
public TTSItem(long itemId, String title, String text, String favIcon) {
this.itemId = itemId;
this.title = title;
this.text = text;
this.favIcon = favIcon;
}
public long itemId;
public String title;
public String link;
public String text;
public String favIcon;
}