[AB-334] adding vote result to suggestion reminder

This commit is contained in:
Sheldan
2021-10-13 18:00:54 +02:00
parent 4a66b7fc67
commit 36ca9b11e4
3 changed files with 9 additions and 0 deletions

View File

@@ -18,4 +18,5 @@ public class SuggestionReminderModel {
private ServerChannelMessage suggestionMessage;
private ServerChannelMessage suggestionCommandMessage;
private ServerUser serverUser;
private SuggestionInfoModel suggestionInfo;
}

View File

@@ -19,4 +19,5 @@ public interface SuggestionService {
CompletableFuture<Void> remindAboutSuggestion(ServerSpecificId suggestionId);
void cancelSuggestionReminder(Suggestion suggestion);
SuggestionInfoModel getSuggestionInfo(Long serverId, Long suggestionId);
SuggestionInfoModel getSuggestionInfo(ServerSpecificId suggestionId);
}