All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmusixmatch.entity.track.search.TrackSearchBody Maven / Gradle / Ivy

The newest version!
package org.jmusixmatch.entity.track.search;

import org.jmusixmatch.entity.track.Track;

import java.util.List;

/**
 * A class to denote the body part of the JSON.
 *
 * @author Sachin Handiekar
 * @version 1.0
 */
public class TrackSearchBody {
    private List track_list;

    public void setTrack_list(List track_list) {
        this.track_list = track_list;
    }

    public List getTrack_list() {
        return track_list;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy