This commit is contained in:
2024-09-02 11:43:47 +02:00
commit 6301e5cbe4
16 changed files with 812 additions and 0 deletions

View 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;
}
}