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

org.jmusixmatch.entity.lyrics.get.LyricsGetContainer Maven / Gradle / Ivy

package org.jmusixmatch.entity.lyrics.get;

import com.google.gson.annotations.SerializedName;

import org.jmusixmatch.entity.Header;

public class LyricsGetContainer {
	
    @SerializedName("body")
    private LyricsGetBody body;
    
    @SerializedName("header")
    private Header header;

    public Header getHeader() {
        return header;
    }

    public void setHeader(Header header) {
        this.header = header;
    }

    public LyricsGetBody getBody() {
        return body;
    }

    public void setBody(LyricsGetBody body) {
        this.body = body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy