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

com.music.Label Maven / Gradle / Ivy

package com.music;

import com.github.restup.annotations.ApiName;
import java.util.List;

@ApiName("label")
public class Label {

    private Long id;
    private String name;
    private List albums;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List getAlbums() {
        return albums;
    }

    public void setAlbums(List albums) {
        this.albums = albums;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy