
com.exaroton.api.server.ServerMOTDInfo 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 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