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;
}
}