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

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

package com.exaroton.api.server;

public class ServerMOTDInfo {
    /**
     * Server MOTD
     */
    private final String motd;

    public ServerMOTDInfo(String motd) {
        this.motd = motd;
    }

    /**
     * @return server MOTD
     */
    public String getMotd() {
        return motd;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy