Back to project page ponyville-live-android.
The source code is released under:
Apache License
If you think the Android project ponyville-live-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ponyvillelive.app.model; /*from www .ja va2s .co m*/ import com.google.gson.annotations.SerializedName; import java.util.List; import java.util.Map; /** * Created by tyr on 22/05/2014. */ public class NowPlayingMeta { public Station station; public Map<String, Integer> listeners; @SerializedName("current_song") public Song currentSong; @SerializedName("song_history") public List<SongWrapper> songHistory; }