[AB-xxx] adding input to response model for 8ball and choose command

This commit is contained in:
Sheldan
2025-04-26 13:09:34 +02:00
parent fd3bf41406
commit d7125fbf25
4 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package dev.sheldan.abstracto.entertainment.model.command;
import java.util.List;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@@ -9,4 +10,5 @@ import lombok.Setter;
@Builder
public class ChooseResponseModel {
private String chosenValue;
private List<String> choices;
}

View File

@@ -9,4 +9,5 @@ import lombok.Setter;
@Builder
public class EightBallResponseModel {
private String chosenKey;
private String input;
}