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

com.music.Track Maven / Gradle / Ivy

package com.music;

import com.github.restup.annotations.ApiName;

@ApiName("track")
public class Track {

    private int number;
    private String name;

    public int getNumber() {
        return number;
    }

    public void setNumber(int number) {
        this.number = number;
    }

    public String getName() {
        return name;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy