com.github.expdev07.commy.spigotplugin.TestObject Maven / Gradle / Ivy
package com.github.expdev07.commy.spigotplugin;
public class TestObject {
private String name;
private int id;
public TestObject(String name, int id) {
this.name = name;
this.id = id;
}
public String getName() {
return name;
}
public int getId() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy