com.exaroton.api.server.ServerSoftware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official exaroton java library
package com.exaroton.api.server;
public class ServerSoftware {
/**
* Unique software ID
*/
public final String id;
/**
* Software name
*/
public final String name;
/**
* Software version
*/
public final String version;
public ServerSoftware(String id, String name, String version) {
this.id = id;
this.name = name;
this.version = version;
}
}