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

com.exaroton.api.server.ServerSoftware Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy