HidekoBot/src/main/java/wtf/beatrice/hidekobot/objects/MessageResponse.java

18 lines
363 B
Java

package wtf.beatrice.hidekobot.objects;
import net.dv8tion.jda.api.entities.MessageEmbed;
import org.jetbrains.annotations.Nullable;
public record MessageResponse(String content, MessageEmbed embed) {
@Nullable
public String getContent() {
return content;
}
@Nullable
public MessageEmbed getEmbed() {
return embed;
}
}