Init
This commit is contained in:
13
src/main/java/systems/brn/gotifymc/GotifyMessage.java
Normal file
13
src/main/java/systems/brn/gotifymc/GotifyMessage.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package systems.brn.gotifymc;
|
||||
|
||||
public class GotifyMessage {
|
||||
public final String title;
|
||||
public final String message;
|
||||
public final int priority;
|
||||
|
||||
public GotifyMessage(String title, String message, int priority) {
|
||||
this.title = title;
|
||||
this.message = message;
|
||||
this.priority = priority;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user