Moar, not redy for production

This commit is contained in:
Allink 2022-05-10 15:37:13 +01:00
parent ddb5f9ed43
commit 35a5ffe71c
No known key found for this signature in database
GPG key ID: 77DCA801362E9645
9 changed files with 268 additions and 91 deletions

View file

@ -0,0 +1,14 @@
package dev.plex.nush;
import java.util.UUID;
import lombok.AllArgsConstructor;
import lombok.Data;
import net.kyori.adventure.text.Component;
@Data
@AllArgsConstructor
public class Message {
UUID sender;
Component message;
}