![JAR search and dependency download from the Maven repository](/logo.png)
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