mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-02-02 23:43:37 +00:00
Implementation of the display of song lyrics where present
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
package com.cappielloantonio.play.subsonic.models;
|
||||
|
||||
import com.tickaroo.tikxml.annotation.Attribute;
|
||||
import com.tickaroo.tikxml.annotation.TextContent;
|
||||
import com.tickaroo.tikxml.annotation.Xml;
|
||||
|
||||
@Xml
|
||||
@Xml(name = "lyrics")
|
||||
public class Lyrics {
|
||||
@Attribute(name = "value")
|
||||
@TextContent
|
||||
protected String content;
|
||||
@Attribute
|
||||
protected String artist;
|
||||
|
||||
@@ -30,6 +30,7 @@ public class SubsonicResponse {
|
||||
private InternetRadioStations internetRadioStations;
|
||||
private NewestPodcasts newestPodcasts;
|
||||
private Podcasts podcasts;
|
||||
@Element(name = "lyrics")
|
||||
private Lyrics lyrics;
|
||||
@Element(name = "songsByGenre")
|
||||
private Songs songsByGenre;
|
||||
|
||||
Reference in New Issue
Block a user