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