basic implementation of #288
This commit is contained in:
parent
95df796890
commit
495b7b33ce
1 changed files with 24 additions and 0 deletions
|
@ -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;
|
||||
}
|
Loading…
Reference in a new issue