org.jmusixmatch.entity.track.PrimaryGenres Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jMusixMatch Show documentation
Show all versions of jMusixMatch Show documentation
Java MusixMatch API by Sachin Handiekar
The newest version!
package org.jmusixmatch.entity.track;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class PrimaryGenres {
@SerializedName("music_genre_list")
private List musicGenreList = null;
public List getMusicGenreList() {
return musicGenreList;
}
public void setMusicGenreList(List musicGenreList) {
this.musicGenreList = musicGenreList;
}
}